Skip to content

Commit e15c281

Browse files
committed
feat (unit tests) fix unit tests
1 parent fa8bf28 commit e15c281

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def testStaxWrapper(self):
100100
json=response_dict,
101101
status=200,
102102
)
103-
response = self.account_client.CreateAccount(Name="Unit", AccountType="Test")
103+
response = self.account_client.CreateAccount(Name="Unit", AccountType="ab13a455-033f-4947-8393-641eefc3ba5e")
104104
self.assertEqual(response, response_dict)
105105

106106
@responses.activate

tests/test_contract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def testGetSchema(self):
4242
"""
4343
Test getting the default schema
4444
"""
45-
data = {"Name": "Unit", "AccountType": "Test"}
45+
data = {"Name": "Unit", "AccountType": "ab13a455-033f-4947-8393-641eefc3ba5e"}
4646
component = "accounts.CreateAccount"
4747
self.StaxContract.validate(data, component)
4848
schema = self.StaxContract.get_schema()

0 commit comments

Comments
 (0)