[2.2.x] Fixed #30810 -- Fixed WatchmanReloaderTests.test_setting_timeout_from_environment_variable test.
client_timeout is an instance attribute.
Backport of 2fd610eb30
from master
This commit is contained in:
parent
80d78fd651
commit
38af257988
|
@ -666,7 +666,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)
|
||||
|
||||
|
||||
class StatReloaderTests(ReloaderTests, IntegrationTests):
|
||||
|
|
Loading…
Reference in New Issue