diff --git a/tests/dummy_game_instance.py b/tests/dummy_game_instance.py index 7c10b95..e3da523 100644 --- a/tests/dummy_game_instance.py +++ b/tests/dummy_game_instance.py @@ -58,21 +58,21 @@ def test_dummy_game_instance_calls(self, '--set-default', '--headless', 'dummy', PosixPath('/game-instance'), '1.8.1', '--MakingHistory', '1.1.0', '--BreakingGround', '1.0.0'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'compat', 'add', '1.8.0'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'cache', 'set', PosixPath('/cache'), '--headless'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'cache', 'setlimit', '5000'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'repo', 'add', 'local', 'file:///repo/metadata.tar.gz'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'repo', 'priority', 'local', '0'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'update'], - capture_output=True), + capture_output=True, check=False), call(['mono', PosixPath('/ckan.exe'), 'instance', 'forget', 'dummy'], - capture_output=True) + capture_output=True, check=False) ])