Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import pytest
import platform
from time import sleep
import sys

from azure.data.tables import TableServiceClient, TableClient
from azure.data.tables._version import VERSION
from azure.core.exceptions import HttpResponseError

from _shared.testcase import (
TableTestCase,
Expand Down Expand Up @@ -419,7 +419,7 @@ def test_create_service_with_custom_account_endpoint_path(self, tables_cosmos_ac
if self.is_live:
sleep(SLEEP_DELAY)

@pytest.mark.xfail
@pytest.mark.skipif(sys.version_info < (3, 0), reason="Malformed string")
@CosmosPreparer()
def test_user_agent_default(self, tables_cosmos_account_name, tables_primary_cosmos_account_key):
service = TableServiceClient(self.account_url(tables_cosmos_account_name, "cosmos"), credential=tables_primary_cosmos_account_key)
Expand Down