From ea0340e8037f215025457bec39fc7d32af3fb9b3 Mon Sep 17 00:00:00 2001 From: Predrag Gruevski Date: Fri, 18 Oct 2024 20:06:35 +0000 Subject: [PATCH] Fix expected error message string. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6002c5c..b7e5b57b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1785,7 +1785,7 @@ jobs: - name: Check output run: | cd semver - EXPECTED="$(echo -e "error: rustc version is not high enough: >=1.77.0 needed, got 1.76.0")" + EXPECTED="$(echo -e "error: rustc version is not high enough: >=1.80.0 needed, got 1.79.0")" RESULT="$(cat output | grep 'error: rustc version')" diff <(echo "$RESULT") <(echo "$EXPECTED")