Browse Source

LibJS/Tests: Run prettier on modulo-basic.js

Linus Groh 3 năm trước cách đây
mục cha
commit
af75503c17
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Userland/Libraries/LibJS/Tests/operators/modulo-basic.js

+ 1 - 1
Userland/Libraries/LibJS/Tests/operators/modulo-basic.js

@@ -23,7 +23,7 @@ test("basic functionality", () => {
     expect(1 % -0).toBeNaN();
     expect(0 % 5).toBe(0);
     expect(-0 % 5).toBe(-0);
-    expect((-1) % -1).toBe(-0);
+    expect(-1 % -1).toBe(-0);
 
     // test262 examples
     expect(1 % null).toBeNaN();