aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/integration_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/integration_test.py')
-rwxr-xr-xtests/lib/integration_test.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/lib/integration_test.py b/tests/lib/integration_test.py
index 0a1cf87..905caa6 100755
--- a/tests/lib/integration_test.py
+++ b/tests/lib/integration_test.py
@@ -28,13 +28,16 @@ class IntegrationTest(base_test.BaseTestClass):
def test_hello_world(self):
asserts.assert_equal(self.user_params['icecream'], 42)
asserts.assert_equal(self.user_params['extra_param'], 'haha')
- logging.info('This is a bare minimal test to make sure the basic MOBLY'
- ' test flow works.')
+ logging.info(
+ 'This is a bare minimal test to make sure the basic MOBLY'
+ ' test flow works.'
+ )
asserts.explicit_pass(
'Hello World',
# Use a unicode string here to make sure the full log pipeline
# works with unicode.
- extras=u'\u2022')
+ extras='\u2022',
+ )
if __name__ == '__main__':