1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:48:14 +00:00

LibJS: Fix test files indentation (4 spaces)

This commit is contained in:
Linus Groh 2020-04-13 14:08:27 +01:00 committed by Andreas Kling
parent 0040d6bf2d
commit 92a9fe0e49
8 changed files with 111 additions and 111 deletions

View file

@ -2,9 +2,9 @@ var a = "foo";
switch (a + "bar") {
case 1:
break;
break;
case "foobar":
case 2:
console.log("PASS");
break;
console.log("PASS");
break;
}