Fix test_register.py flake8-bugbear warning

This changeset fixes a small syntax issue with one of the tests that is being picked up by the new version of flake8-bugbear.  It turns out there was an extraneous comma left in the test.

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2023-12-06 09:46:44 -05:00
parent d226afcb3c
commit a7bf173457
+1 -1
View File
@@ -322,7 +322,7 @@ def test_register_from_invite(
"+12024900460", "+12024900460",
"somreallyhardthingtoguess", "somreallyhardthingtoguess",
"sms_auth", "sms_auth",
), )
mock_get_invited_user_by_id.assert_called_once_with(sample_invite["id"]) mock_get_invited_user_by_id.assert_called_once_with(sample_invite["id"])