Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Nechvátal committed Apr 17, 2023
1 parent f7d515a commit bde80f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions azure-devops/azure/devops/issue_tests/test_issue_268.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ def text(self, encoding=None):
class TestDeserialization(unittest.TestCase):

# https://github.com/microsoft/azure-devops-python-api/issues/268
def test_deserialization_issue_268_51(self):
from azure.devops.v5_1.task_agent import models
def test_deserialization_issue_268_71(self):
from azure.devops.v7_1.task_agent import models
self._test_deserialization(models.__dict__.items(), _268_type, _268_json)

# https://github.com/microsoft/azure-devops-python-api/issues/268
def test_deserialization_issue_268_60(self):
from azure.devops.v6_0.task_agent import models
def test_deserialization_issue_268_70(self):
from azure.devops.v7_0.task_agent import models
self._test_deserialization(models.__dict__.items(), _268_type, _268_json)

@staticmethod
Expand Down

0 comments on commit bde80f5

Please sign in to comment.