diff --git a/tests/test_submission.py b/tests/test_submission.py index 77d32fe..635f27b 100644 --- a/tests/test_submission.py +++ b/tests/test_submission.py @@ -58,12 +58,7 @@ def test_submission_page_construct(reddit, terminal, config, oauth): window.addstr.assert_any_call(0, 0, title) # Banner - menu = ('[1]hot ' - '[2]top ' - '[3]rising ' - '[4]new ' - '[5]controversial' - '[6]gilded ').encode('utf-8') + menu = '[1]hot [2]top [3]rising [4]new [5]controversial [6]gilded'.encode('utf-8') window.addstr.assert_any_call(0, 0, menu) # Footer diff --git a/tests/test_subreddit.py b/tests/test_subreddit.py index e043c05..950061b 100644 --- a/tests/test_subreddit.py +++ b/tests/test_subreddit.py @@ -30,12 +30,7 @@ def test_subreddit_page_construct(reddit, terminal, config, oauth): window.addstr.assert_any_call(0, 0, title) # Banner - menu = ('[1]hot ' - '[2]top ' - '[3]rising ' - '[4]new ' - '[5]controversial' - '[6]gilded ').encode('utf-8') + menu = '[1]hot [2]top [3]rising [4]new [5]controversial [6]gilded'.encode('utf-8') window.addstr.assert_any_call(0, 0, menu) # Submission diff --git a/tests/test_subscription.py b/tests/test_subscription.py index b7dba02..fbc5d2f 100644 --- a/tests/test_subscription.py +++ b/tests/test_subscription.py @@ -36,12 +36,7 @@ def test_subscription_page_construct(reddit, terminal, config, oauth, assert name in [args[0][2] for args in window.addstr.call_args_list] # Banner shouldn't be drawn - menu = ('[1]hot ' - '[2]top ' - '[3]rising ' # Whitespace is relevant - '[4]new ' - '[5]controversial' - '[6]gilded ').encode('utf-8') + menu = '[1]hot [2]top [3]rising [4]new [5]controversial [6]gilded'.encode('utf-8') with pytest.raises(AssertionError): window.addstr.assert_any_call(0, 0, menu)