From 965bd351fee99d3d9bc9054b48c075453661daf2 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Tue, 10 Dec 2024 21:01:34 -0600 Subject: [PATCH] Pass check param in test --- tests/dummy_game_instance.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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) ])