summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Abraham <akabraham@gmail.com>2016-03-15 13:30:41 -0700
committerTim Graham <timograham@gmail.com>2016-03-15 18:35:02 -0400
commit2ed2b508ceac3d5d7d98483fca96cfdbb8a9d98d (patch)
tree1f39322ee2fdd3f69e5f19f6c8aa46343c1e417e
parent0dc3822f56a0db83f9fc0b1ed320bbeb477eca63 (diff)
[1.9.x] Fixed DiscoverRunner failfast parameter default in docs.
Backport of f2d9caa625084b0b96d60153f6b26ba43a1ab835 from master
-rw-r--r--docs/topics/testing/advanced.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 5c84393182..92d1b61d21 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -372,7 +372,7 @@ behavior. This class defines the ``run_tests()`` entry point, plus a
selection of other methods that are used to by ``run_tests()`` to set up,
execute and tear down the test suite.
-.. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=True, keepdb=False, reverse=False, debug_sql=False, **kwargs)
+.. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=False, keepdb=False, reverse=False, debug_sql=False, **kwargs)
``DiscoverRunner`` will search for tests in any file matching ``pattern``.