From 164eff71c357e86f8cc8376822aa492fd10c7338 Mon Sep 17 00:00:00 2001 From: David Matos Date: Wed, 4 Sep 2024 22:58:03 +0200 Subject: [PATCH] Change CI test to allow extra failure for this lint --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca7d480c..04566e4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1329,7 +1329,7 @@ jobs: - name: Check output run: | cd semver - EXPECTED="$(echo -e "--- failure auto_trait_impl_removed: auto trait no longer implemented ---")" + EXPECTED="$(echo -e "--- failure auto_trait_impl_removed: auto trait no longer implemented ---\n--- failure enum_variant_discriminant_changed: enum variant had its discriminant change value ---")" RESULT="$(cat output | grep failure)" diff <(echo "$RESULT") <(echo "$EXPECTED") @@ -1361,7 +1361,7 @@ jobs: - name: Check output run: | cd semver - EXPECTED="$(echo -e "--- failure auto_trait_impl_removed: auto trait no longer implemented ---")" + EXPECTED="$(echo -e "--- failure auto_trait_impl_removed: auto trait no longer implemented ---\n--- failure enum_variant_discriminant_changed: enum variant had its discriminant change value ---")" RESULT="$(cat output | grep failure)" diff <(echo "$RESULT") <(echo "$EXPECTED")