From a7bf173457f0e368c08300c5398c6eabc261763f Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Wed, 6 Dec 2023 09:46:44 -0500 Subject: [PATCH] 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 --- tests/app/main/views/test_register.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/main/views/test_register.py b/tests/app/main/views/test_register.py index fc3d24ffa..e7bfc9327 100644 --- a/tests/app/main/views/test_register.py +++ b/tests/app/main/views/test_register.py @@ -322,7 +322,7 @@ def test_register_from_invite( "+12024900460", "somreallyhardthingtoguess", "sms_auth", - ), + ) mock_get_invited_user_by_id.assert_called_once_with(sample_invite["id"])