Преглед изворни кода

LibJS: Run "prettier" on the tests :^)

Andreas Kling пре 4 година
родитељ
комит
a103eae0d4
1 измењених фајлова са 5 додато и 5 уклоњено
  1. 5 5
      Libraries/LibJS/Tests/object-basic.js

+ 5 - 5
Libraries/LibJS/Tests/object-basic.js

@@ -40,11 +40,11 @@ describe("correct behavior", () => {
     });
 
     test("numeric keys", () => {
-        const hex = {0x10: "16"};
-        const oct = {0o10: "8"};
-        const bin = {0b10: "2"};
-        const float = {.5: "0.5"};
-        
+        const hex = { 0x10: "16" };
+        const oct = { 0o10: "8" };
+        const bin = { 0b10: "2" };
+        const float = { 0.5: "0.5" };
+
         expect(hex["16"]).toBe("16");
         expect(oct["8"]).toBe("8");
         expect(bin["2"]).toBe("2");