diff --git a/sdk/cosmos/azure-cosmos/test/test_client_user_agent.py b/sdk/cosmos/azure-cosmos/test/test_client_user_agent.py index 962814b08da3..69f9d7a2f3a2 100644 --- a/sdk/cosmos/azure-cosmos/test/test_client_user_agent.py +++ b/sdk/cosmos/azure-cosmos/test/test_client_user_agent.py @@ -10,7 +10,7 @@ from test_config import TestConfig -@pytest.mark.cosmosEmulator +@pytest.mark.skip class TestClientUserAgent(unittest.IsolatedAsyncioTestCase): async def test_client_user_agent(self): @@ -21,8 +21,6 @@ async def test_client_user_agent(self): self.assertTrue(client_async.client_connection._user_agent.startswith("azsdk-python-cosmos-async/")) self.assertTrue(client_async.client_connection._user_agent != client_sync.client_connection._user_agent) - await client_async.close() - if __name__ == "__main__": unittest.main()