Skip to content

Commit

Permalink
Fix typo in variable name in testkomodo.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
berland committed Oct 28, 2024
1 parent 6153918 commit 053b9a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/testkomodo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ start_tests () {
# Run ert scheduler tests on the actual cluster (defined by $_ERT_TESTS_QUEUE_SYSTEM)
basetemp=$(mktemp -d -p "$_ERT_TESTS_SHARED_TMP")
pytest --timeout=3600 -v --"$_ERT_TESTS_QUEUE_SYSTEM" --basetemp="$basetemp" unit_tests/scheduler
return_code_ert_sheduler_tests=$?
return_code_ert_scheduler_tests=$?
rm -rf "$basetemp" || true

popd
Expand All @@ -99,7 +99,7 @@ start_tests () {
echo "One or more ERT memory consumption tests failed."
return_code_combined_tests=1
fi
if [ "$return_code_ert_sheduler_tests" -ne 0 ]; then
if [ "$return_code_ert_scheduler_tests" -ne 0 ]; then
echo "One or more ERT scheduler tests failed."
return_code_combined_tests=1
fi
Expand Down

0 comments on commit 053b9a8

Please sign in to comment.