Skip to content

Commit

Permalink
Update test_env.py (Azure#24596)
Browse files Browse the repository at this point in the history
  • Loading branch information
simorenoh authored and sarkar-rajarshi committed Jun 9, 2022
1 parent 7d83245 commit 2c785a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/cosmos/azure-cosmos/test/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def setUpClass(cls):
connection_policy=cls.connectionPolicy)
cls.created_db = cls.client.create_database_if_not_exists("Test_Env_DB")
cls.created_collection = cls.created_db.create_container_if_not_exists(
cls.configs.TEST_COLLECTION_SINGLE_PARTITION_ID, PartitionKey(path="/id"))
"Test_Env_Container", PartitionKey(path="/id"))

@classmethod
def tearDownClass(cls):
Expand Down Expand Up @@ -106,4 +106,4 @@ def GetDocumentLink(cls, database, document_collection, document, is_name_based=

if __name__ == "__main__":
#import sys;sys.argv = ['', 'Test.testName']
unittest.main()
unittest.main()

0 comments on commit 2c785a7

Please sign in to comment.