Skip to content

Commit

Permalink
Fix regression bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
keith.dart committed Apr 25, 2014
1 parent 50ca18a commit b06f524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QA/pycopia/QA/testreporter.py
Expand Up @@ -122,7 +122,7 @@ def report_module(self, mod):
ui = self.config.UI
ui.printf(REPORT_MODULE.format(name=mod.__name__, file=mod.__file__))
ui.Print("This module defines the following test cases.")
clsdict = testinspector.find_classes(mod.__name__, all=False)
clsdict = testinspector.find_classes(mod.__name__, findall=False)
for name, params in clsdict.items():
ui.printf(" %y{name}%N {using}".format(name=name, using="with config parameters:" if params else "using no config parameters."))
if params:
Expand Down

0 comments on commit b06f524

Please sign in to comment.