summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPablo GarcĂ­a <poli@devartis.com>2019-09-26 14:55:25 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-27 08:35:55 +0200
commit49dcb5d3ba688ea45eb5fea66b6a4c82361e6e54 (patch)
tree6f77ca633051067658595480c69a800cfe24b650 /tests
parent1adf85d1687587b777f361f7831ebc0392f7127f (diff)
[3.0.x] Fixed #30810 -- Fixed WatchmanReloaderTests.test_setting_timeout_from_environment_variable test.
client_timeout is an instance attribute. Backport of 2fd610eb301dc01e100befed891e8007fd2e981f from master
Diffstat (limited to 'tests')
-rw-r--r--tests/utils_tests/test_autoreload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_autoreload.py b/tests/utils_tests/test_autoreload.py
index 2216d003ee..fe89f897c7 100644
--- a/tests/utils_tests/test_autoreload.py
+++ b/tests/utils_tests/test_autoreload.py
@@ -651,7 +651,7 @@ class WatchmanReloaderTests(ReloaderTests, IntegrationTests):
@mock.patch.dict(os.environ, {'DJANGO_WATCHMAN_TIMEOUT': '10'})
def test_setting_timeout_from_environment_variable(self):
- self.assertEqual(self.RELOADER_CLS.client_timeout, 10)
+ self.assertEqual(self.RELOADER_CLS().client_timeout, 10)
@skipIf(on_macos_with_hfs(), "These tests do not work with HFS+ as a filesystem")