From c4cf62f02f0818845e390644fbf85969e9428abc Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 14 Apr 2024 15:44:44 +0800 Subject: [PATCH] Update run_tests.py --- scripts/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 56ca1824..da9649f9 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -70,7 +70,7 @@ class A: exit() ''', capture_output=True, check=True) res.check_returncode() - assert 'ans_1: 3' in res.stdout - assert 'ans_2: abc' in res.stdout + assert 'ans_1: 3' in res.stdout, res.stdout + assert 'ans_2: abc' in res.stdout, res.stdout print("ALL TESTS PASSED")