From 1643f3892ec8c476b61f22c2992e73178874d994 Mon Sep 17 00:00:00 2001 From: Mads Ynddal <5528170+Baekalfen@users.noreply.github.com> Date: Sun, 9 Oct 2022 23:54:17 +0200 Subject: [PATCH] Remove autopause from testing --- tests/test_basics.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tests/test_basics.py b/tests/test_basics.py index 15a84c3be..cb3073443 100644 --- a/tests/test_basics.py +++ b/tests/test_basics.py @@ -86,7 +86,6 @@ def test_argv_parser(*args): empty = parser.parse_args(file_that_exists.split(" ")).__dict__ for k, v in { "ROM": file_that_exists, - "autopause": False, "bootrom": None, "debug": False, "loadstate": None, @@ -109,16 +108,9 @@ def test_argv_parser(*args): # Check flags become True flags = parser.parse_args( - f"{file_that_exists} --debug --autopause --profiling --rewind --no-input --log-level INFO".split(" ") + f"{file_that_exists} --debug --profiling --rewind --no-input --log-level INFO".split(" ") ).__dict__ - for k, v in { - "autopause": True, - "debug": True, - "no_input": True, - "log_level": "INFO", - "profiling": True, - "rewind": True - }.items(): + for k, v in {"debug": True, "no_input": True, "log_level": "INFO", "profiling": True, "rewind": True}.items(): assert flags[k] == v