Commit c028ab7b authored by Jérome Perrin's avatar Jérome Perrin

testnode: typo

parent bfd36200
...@@ -350,7 +350,7 @@ from the distributor.") ...@@ -350,7 +350,7 @@ from the distributor.")
elif my_test_type == 'ScalabilityTest': elif my_test_type == 'ScalabilityTest':
runner = ScalabilityTestRunner(self) runner = ScalabilityTestRunner(self)
else: else:
log("testnode, Runner type not implemented.", my_test_type) log("testnode, Runner type %s not implemented.", my_test_type)
raise NotImplementedError raise NotImplementedError
log("Type of current test is %s" % (my_test_type,)) log("Type of current test is %s" % (my_test_type,))
# master testnode gets test_suites, slaves get nothing # master testnode gets test_suites, slaves get nothing
...@@ -372,7 +372,7 @@ from the distributor.") ...@@ -372,7 +372,7 @@ from the distributor.")
elif my_test_type == 'ScalabilityTest': elif my_test_type == 'ScalabilityTest':
runner = ScalabilityTestRunner(node_test_suite) runner = ScalabilityTestRunner(node_test_suite)
else: else:
log("testnode, Runner type not implemented.", my_test_type) log("testnode, Runner type %s not implemented.", my_test_type)
raise NotImplementedError raise NotImplementedError
# XXX: temporary hack to prevent empty test_suite # XXX: temporary hack to prevent empty test_suite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment