Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Feb 21, 2023
1 parent b5c7bfe commit 355e4e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration_tests/base_api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,9 @@ def test_get_filter_related_owners(self):
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert 4 == response["count"]
# assert 4 == response["count"]
sorted_results = sorted(response["result"], key=lambda value: value["text"])
raise Exception(sorted_results)
expected_results = [
{
"extra": {"active": True, "email": "gamma@fab.org"},
Expand Down

0 comments on commit 355e4e2

Please sign in to comment.