From 5ca1018579b655e6617437c5cfae589fd1ee897e Mon Sep 17 00:00:00 2001 From: Laurent Le Brun Date: Mon, 5 Feb 2024 00:00:45 +0100 Subject: [PATCH] Fix failing test for rust (update expected message) --- test_suite/testdata/rust/regression.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_suite/testdata/rust/regression.star b/test_suite/testdata/rust/regression.star index 3a47424..4b5a531 100644 --- a/test_suite/testdata/rust/regression.star +++ b/test_suite/testdata/rust/regression.star @@ -1,5 +1,5 @@ # Regression for https://github.com/google/starlark-rust/issues/10 -"abc" * True ### (Type of parameters mismatch|unknown binary op|unsupported) +"abc" * True ### (Type of parameters mismatch|unknown binary op|unsupported|not supported) --- # Make sure int * string works as well as string * int assert_eq(3 * "abc", "abcabcabc")