diff --git a/implants/lib/eldritchv2/eldritch-core/tests/collections_extended.rs b/implants/lib/eldritchv2/eldritch-core/tests/collections_extended.rs index 17bc46334..63c88b893 100644 --- a/implants/lib/eldritchv2/eldritch-core/tests/collections_extended.rs +++ b/implants/lib/eldritchv2/eldritch-core/tests/collections_extended.rs @@ -56,7 +56,7 @@ fn test_list_extended_methods() { assert::fail("l=[1]; l.index(2)", "ValueError"); assert::fail("l=[]; l.pop()", "pop from empty list"); // Missing arguments - assert::fail("l=[1]; l.append()", "append() takes exactly one argument"); + assert::fail("l=[1]; l.append()", "append() takes exactly 1 argument"); } #[test]