We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550f3f4 commit 92d87eaCopy full SHA for 92d87ea
tests/endtoend/test_durable_functions.py
@@ -41,15 +41,14 @@ def get_libraries_to_install(cls):
41
def get_environment_variables(cls):
42
return cls.env_variables
43
44
-
45
@classmethod
46
def get_script_dir(cls):
47
return testutils.E2E_TESTS_FOLDER / 'durable_functions'
48
49
def test_durable(self):
50
r = self.webhost.request('GET',
51
'orchestrators/DurableFunctionsOrchestrator')
52
- time.sleep(4) # wait for the activity to complete
+ time.sleep(4) # wait for the activity to complete
53
self.assertEqual(r.status_code, 202)
54
content = json.loads(r.content)
55
0 commit comments