From 7100291ed90d617ceb7bf8d627fce65f4c032e97 Mon Sep 17 00:00:00 2001 From: Jacob Chapman <7908073+chapmanjacobd@users.noreply.github.com> Date: Sat, 16 Jul 2022 10:38:34 -0500 Subject: [PATCH] forgot comma --- tests/test_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connector.py b/tests/test_connector.py index 4a2d461..e928000 100644 --- a/tests/test_connector.py +++ b/tests/test_connector.py @@ -447,7 +447,7 @@ def test_check_user_existence_banned( @pytest.mark.reddit @pytest.mark.parametrize(('test_subreddit_name', 'expected_message'), ( ('donaldtrump', 'cannot be found'), - ('submitters', 'private and cannot be scraped') + ('submitters', 'private and cannot be scraped'), ('lhnhfkuhwreolo', 'does not exist') )) def test_check_subreddit_status_bad(test_subreddit_name: str, expected_message: str, reddit_instance: praw.Reddit):