summaryrefslogtreecommitdiff
path: root/docs/topics/testing
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:33:35 -0400
commitf2d9caa625084b0b96d60153f6b26ba43a1ab835 (patch)
tree0f8b2d834e98cb6d2edd74c07083f32740f1772e /docs/topics/testing
parent44c0ecdd9226d039a8c666b36ae320af2046a1c1 (diff)
Fixed DiscoverRunner failfast parameter default in docs.
Diffstat (limited to 'docs/topics/testing')
-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 15fb226d2c..754904e1d0 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``.