Fixed #30810 -- Fixed WatchmanReloaderTests.test_setting_timeout_from_environment_variable test.
client_timeout is an instance attribute.
This commit is contained in:
parent
c574bec092
commit
2fd610eb30
|
@ -651,7 +651,7 @@ class WatchmanReloaderTests(ReloaderTests, IntegrationTests):
|
||||||
|
|
||||||
@mock.patch.dict(os.environ, {'DJANGO_WATCHMAN_TIMEOUT': '10'})
|
@mock.patch.dict(os.environ, {'DJANGO_WATCHMAN_TIMEOUT': '10'})
|
||||||
def test_setting_timeout_from_environment_variable(self):
|
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")
|
@skipIf(on_macos_with_hfs(), "These tests do not work with HFS+ as a filesystem")
|
||||||
|
|
Loading…
Reference in New Issue