Skip to content

Commit 3b19374

Browse files
committed
Line length control, properly done.
1 parent b37367c commit 3b19374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/framework/easyconfigparser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ def test_easyconfig_constants(self):
184184
for constant_name in constants:
185185
self.assertTrue(isinstance(constant_name, string_type), "Constant name %s is a string" % constant_name)
186186
val = constants[constant_name]
187-
fail_msg = "The constant %s should have an acceptable type, found %s (%s)"
188-
% (constant_name, type(val), str(val))
187+
fail_msg = "The constant %s should have an acceptable type, found %s (%s)" % (constant_name,
188+
type(val), str(val))
189189
self.assertTrue(isinstance(val, (string_type, dict, tuple)), fail_msg)
190190

191191
# check a couple of randomly picked constant values

0 commit comments

Comments
 (0)