From 29ba05f5be60594f913f1f9bb74976528873fcb8 Mon Sep 17 00:00:00 2001 From: Nic Young Date: Mon, 29 Dec 2014 22:11:17 -0700 Subject: [PATCH] Fix grammar in testing doc. --- docs/testing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/testing.rst b/docs/testing.rst index fb6a3001..a6717ce8 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -58,7 +58,7 @@ client and initializes a new database. This function is called before each individual test function is run. To delete the database after the test, we close the file and remove it from the filesystem in the :meth:`~unittest.TestCase.tearDown` method. Additionally during setup the -``TESTING`` config flag is activated. What it does is disabling the error +``TESTING`` config flag is activated. What it does is disable the error catching during request handling so that you get better error reports when performing test requests against the application.