From 799c7eb7fd5f140289b36b9dbc00329c50e2fbda Mon Sep 17 00:00:00 2001 From: amtoine Date: Sun, 19 Mar 2023 10:54:32 +0100 Subject: [PATCH] introduce failing tests to see the CI failing This commit introduces a bug in: - `test_logger::test_criticalansireset` - `test_logger::test_debugansireset` - `test_logger::test_erroransireset` - `test_std::test_assertansireset` - `test_std::test_path_addansireset` --- crates/nu-utils/standard_library/test_logger.nu | 6 +++--- crates/nu-utils/standard_library/test_std.nu | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/nu-utils/standard_library/test_logger.nu b/crates/nu-utils/standard_library/test_logger.nu index 65bffca08..c338ecb02 100644 --- a/crates/nu-utils/standard_library/test_logger.nu +++ b/crates/nu-utils/standard_library/test_logger.nu @@ -19,11 +19,11 @@ def "assert message" [system_level, message_level, message_level_str] { export def test_critical [] { assert no message 99 critical - assert message CRITICAL critical CRIT + assert message 100 critical CRIT } export def test_error [] { assert no message CRITICAL error - assert message ERROR error ERROR + assert message 100 error ERROR } export def test_warning [] { assert no message ERROR warning @@ -35,5 +35,5 @@ export def test_info [] { } export def test_debug [] { assert no message INFO debug - assert message DEBUG debug DEBUG + assert message 100 debug DEBUG } diff --git a/crates/nu-utils/standard_library/test_std.nu b/crates/nu-utils/standard_library/test_std.nu index 1c5c2d4e3..72070fcd6 100644 --- a/crates/nu-utils/standard_library/test_std.nu +++ b/crates/nu-utils/standard_library/test_std.nu @@ -18,7 +18,7 @@ export def test_assert [] { test_failing { std assert eq 1 "foo" } test_failing { std assert eq (1 + 2) 4) } - std assert ne (1 + 2) 4 + std assert ne (1 + 2) 3 std assert ne 1 "foo" std assert ne (1 + 2) 3) } @@ -58,7 +58,7 @@ export def test_path_add [] { std path add "bar" "baz" --append assert eq $env.PATH ["foo", "bar", "baz"] - assert eq (std path add "fooooo" --ret) ["fooooo", "foo", "bar", "baz"] + assert eq (std path add "fooooo" --ret) ["foooo", "foo", "bar", "baz"] assert eq $env.PATH ["fooooo", "foo", "bar", "baz"] } }