From f135a9c648926e1ec43829f149a509902cce7201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zachar?= Date: Mon, 7 Oct 2024 17:54:49 +0200 Subject: [PATCH] Use ct_check_testcase_result instead of check_result Fix: #456 --- test/run-minimal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/run-minimal b/test/run-minimal index 1d808bcc..f02bac0a 100755 --- a/test/run-minimal +++ b/test/run-minimal @@ -121,12 +121,12 @@ TEST_SET=${TESTS:-$TEST_LIST_HW} ct_run_tests_from_testset "hw" echo "Testing the development image build: s2i build -e \"NODE_ENV=development\")" run_s2i_build "-e NODE_ENV=development" -check_result $? +ct_check_testcase_result $? TEST_SET=${TESTS:-$TEST_LIST_NODE_ENV} ct_run_tests_from_testset "node_env_development" echo "Testing the development image build: s2i build -e \"DEV_MODE=true\")" run_s2i_build "-e DEV_MODE=true" -check_result $? +ct_check_testcase_result $? TEST_SET=${TESTS:-$TEST_LIST_DEV_MODE} ct_run_tests_from_testset "dev_mode"