aboutsummaryrefslogtreecommitdiff
path: root/mobly/expects.py
diff options
context:
space:
mode:
Diffstat (limited to 'mobly/expects.py')
-rw-r--r--mobly/expects.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mobly/expects.py b/mobly/expects.py
index 9475758..ad7cb8a 100644
--- a/mobly/expects.py
+++ b/mobly/expects.py
@@ -129,8 +129,9 @@ def expect_equal(first, second, msg=None, extras=None):
try:
asserts.assert_equal(first, second, msg, extras)
except signals.TestSignal as e:
- logging.exception('Expected %s equals to %s, but they are not.', first,
- second)
+ logging.exception(
+ 'Expected %s equals to %s, but they are not.', first, second
+ )
recorder.add_error(e)