-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅ [#1957] Add/fix tests for klant resources for companies
- Loading branch information
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ def test_update_user_after_login(self, m): | |
self.assertEqual(user.email, "[email protected]") | ||
self.assertEqual(user.phonenumber, "0612345678") | ||
|
||
self.assertTimelineLog("retrieved klant for BSN-user") | ||
self.assertTimelineLog("retrieved klant for user") | ||
self.assertTimelineLog( | ||
"updated user from klant API with fields: email, phonenumber" | ||
) | ||
|
@@ -101,5 +101,5 @@ def test_update_user_after_login_skips_existing_email(self, m): | |
self.assertEqual(user.email, "[email protected]") | ||
self.assertEqual(user.phonenumber, "0612345678") | ||
|
||
self.assertTimelineLog("retrieved klant for BSN-user") | ||
self.assertTimelineLog("retrieved klant for user") | ||
self.assertTimelineLog("updated user from klant API with fields: phonenumber") |