Skip to content

Commit

Permalink
compatibility with suite_result on trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
jbalogh committed Feb 24, 2010
1 parent 6f060d4 commit c4660ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django_nose/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def run_tests(self, test_labels, extra_tests=None):
result = self.run_suite(nose_argv)
self.teardown_databases(old_names)
self.teardown_test_environment()
return self.suite_result(result)
# suite_result expects the suite as the first argument. Fake it.
return self.suite_result({}, result)


def _get_options():
Expand Down

0 comments on commit c4660ee

Please sign in to comment.