Skip to content

Commit c31d767

Browse files
committed
fix test directory
1 parent a1de81c commit c31d767

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

workers/tests/emulator_tests/test_cosmosdb_functions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
client = CosmosClient(url, key)
1515

1616

17-
# Create a database in the account using the CosmosClient,
17+
# Create a database in the account using the CosmosClient
1818
database_name = "test"
1919
try:
2020
database = client.create_database(id=database_name)
@@ -44,7 +44,7 @@ class TestCosmosDBFunctions(testutils.WebHostTestCase):
4444

4545
@classmethod
4646
def get_script_dir(cls):
47-
return testutils.E2E_TESTS_FOLDER / 'cosmosdb_functions'
47+
return testutils.EMULATOR_TESTS_FOLDER / 'cosmosdb_functions'
4848

4949
def test_cosmosdb_trigger(self):
5050
data = str(round(time.time()))
@@ -98,13 +98,13 @@ class TestCosmosDBFunctionsStein(TestCosmosDBFunctions):
9898

9999
@classmethod
100100
def get_script_dir(cls):
101-
return testutils.E2E_TESTS_FOLDER / 'cosmosdb_functions' / \
101+
return testutils.EMULATOR_TESTS_FOLDER / 'cosmosdb_functions' / \
102102
'cosmosdb_functions_stein'
103103

104104

105105
class TestCosmosDBFunctionsSteinGeneric(TestCosmosDBFunctions):
106106

107107
@classmethod
108108
def get_script_dir(cls):
109-
return testutils.E2E_TESTS_FOLDER / 'cosmosdb_functions' / \
109+
return testutils.EMULATOR_TESTS_FOLDER / 'cosmosdb_functions' / \
110110
'cosmosdb_functions_stein' / 'generic'

0 commit comments

Comments
 (0)