google / mobly

E2E test framework for tests with complex environment requirements.
https://github.com/google/mobly
Apache License 2.0
627 stars 175 forks source link

Refactor utils_test to follow Google Python style guide. #782

Closed eric100lin closed 2 years ago

eric100lin commented 2 years ago

The misc changes inside this commit:

  1. One-line docstring summary should end with "."
  2. Missing call to super() for method setUp/tearDown
  3. Unused variables
  4. Argument name "mock_Popen", "mockTimer" oesn't conform to '^[a-z][a-z0-9]*$' pattern
  5. Structure tests in AAA format (arrange, act, and assert)

This change is Reviewable