Ticket #5058: SimpleFixRunTestFailure.diff

File SimpleFixRunTestFailure.diff, 531 bytes (added by mamcx <mamcx@…>, 17 years ago)

Simple fix for this issue

  • runtests.py

     
    129129
    130130    # Run the test suite, including the extra validation tests.
    131131    from django.test.simple import run_tests
    132     failures = run_tests(test_labels, verbosity=verbosity, interactive=interactive, extra_tests=extra_tests)
     132    failures = run_tests(test_labels, verbosity=verbosity, extra_tests=extra_tests)
    133133    if failures:
    134134        sys.exit(failures)
    135135
Back to Top