Skip to content

Commit

Permalink
Have another shot at fixing the user data tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Jackson Goerner <[email protected]>
  • Loading branch information
glipR committed Oct 30, 2024
1 parent 8de4326 commit fd96229
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_user_search(self,
manager = User(rk='test_manager_key', email='[email protected]')
user.manager = manager

expected_dict = dict(name='test_first_name test_last_name',
expected_dict = dict(name='test_full_name',
email='[email protected]',
first_name='test_first_name',
last_name='test_last_name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def test_to_json(self) -> None:
total_own=3,
total_follow=1)

expected_document_dict = {"first_name": "test_firstname",
expected_document_dict = {"name": "test_firstname test_lastname",
"first_name": "test_firstname",
"last_name": "test_lastname",
"full_name": "full_name",
"team_name": "team",
Expand Down

0 comments on commit fd96229

Please sign in to comment.