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 355e4e2 commit 736029b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/integration_tests/base_api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,8 @@ 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
2 changes: 1 addition & 1 deletion tests/integration_tests/fixtures/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from tests.integration_tests.test_app import app


@pytest.fixture(scope="session")
@pytest.fixture()
def create_gamma_sqllab_no_data():

with app.app_context():
Expand Down

0 comments on commit 736029b

Please sign in to comment.