diff --git a/test/language/method/static_operators.wren b/test/language/method/static_operators.wren index a7faeda7..710c77ce 100644 --- a/test/language/method/static_operators.wren +++ b/test/language/method/static_operators.wren @@ -31,9 +31,9 @@ System.print(Foo - "a") // expect: infix Foo - a System.print(Foo * "a") // expect: infix Foo * a System.print(Foo / "a") // expect: infix Foo / a System.print(Foo % "a") // expect: infix Foo % a -System.print(Foo < "a") // expec%(this) t: infix Foo < a -System.print(Foo > "a") // expect:%(this) infix Foo > a -System.print(Foo <= "a") // expec%(this) t: infix Foo <= a +System.print(Foo < "a") // expect: infix Foo < a +System.print(Foo > "a") // expect: infix Foo > a +System.print(Foo <= "a") // expect: infix Foo <= a System.print(Foo >= "a") // expect: infix Foo >= a System.print(Foo == "a") // expect: infix Foo == a System.print(Foo != "a") // expect: infix Foo != a