Skip to content

Commit

Permalink
Fixing tests after apache#37507
Browse files Browse the repository at this point in the history
  • Loading branch information
Taragolis committed Feb 17, 2024
1 parent 65642ed commit 3058ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api_connexion/schemas/test_user_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_serialize(self):
"created_on": DEFAULT_TIME,
"email": "test@example.org",
"changed_on": DEFAULT_TIME,
"active": None,
"active": True,
"last_login": None,
"last_name": "Bar",
"fail_login_count": None,
Expand Down Expand Up @@ -111,7 +111,7 @@ def test_serialize(self):
"created_on": DEFAULT_TIME,
"email": "test@example.org",
"changed_on": DEFAULT_TIME,
"active": None,
"active": True,
"last_login": None,
"last_name": "Bar",
"fail_login_count": None,
Expand Down

0 comments on commit 3058ede

Please sign in to comment.