branch: externals/compat commit 8981d4b74bb4056a6cfc9d9894e242956df4c0e5 Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Handle multiple signals in string-replace test case --- compat-tests.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compat-tests.el b/compat-tests.el index f8c0591..6adeac6 100644 --- a/compat-tests.el +++ b/compat-tests.el @@ -298,7 +298,8 @@ the compatibility function." (compat--should "ccc" "ab" "" "abcabcabc") (compat--should "aaaaaa" "a" "aa" "aaa") (compat--should "defg" "abc" "defg" "abc") - (compat--error wrong-length-argument "" "x" "abc"))) + (compat--error (wrong-type-argument wrong-length-argument) + "" "x" "abc"))) (ert-deftest compat-length= () "Check if `compat--string-length=' was implemented correctly."