From eda67845ff40441099c3d9a11a357f4a46b0f858 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Sun, 24 Nov 2024 13:32:50 -0800 Subject: [PATCH] Fix tests --- tests/repl/test_type_check.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/repl/test_type_check.rs b/tests/repl/test_type_check.rs index 078802f702..86216c15a9 100644 --- a/tests/repl/test_type_check.rs +++ b/tests/repl/test_type_check.rs @@ -43,7 +43,10 @@ fn date_minus_duration() -> TestResult { #[test] fn duration_minus_date_not_supported() -> TestResult { - fail_test("2day - 2023-04-22", "doesn't support these values") + fail_test( + "2day - 2023-04-22", + "nu::parser::operator_incompatible_types", + ) } #[test]