Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Merge branch 'master' into add-token-auth-support
# Conflicts:
#	tests/test_client.py
  • Loading branch information
corneyl committed Mar 16, 2021
commit 4b75d2996b13e589e86abcad4a214e79a8e78a40
8 changes: 3 additions & 5 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,9 @@ def test_get_categories(self):
self.expected_base_url + "/my_store?depth=0", headers=None
)

self.assertDictEqual(categories[0], {
"type": "CATEGORY",
"id": "purchases",
"name": "Besteld",
})
self.assertDictEqual(
categories[0], {"type": "CATEGORY", "id": "purchases", "name": "Besteld"}
)

def test_get_auth_exception(self):
self.session_mock().get.return_value = self.MockResponse(
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.