Skip to content

Commit

Permalink
Fixed test JS indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Sep 26, 2024
1 parent 7692264 commit fe9e47f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/dhcp_server_cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { spawn } = require("child_process");
const os = require("os");

if (os.platform() === "win32") {
spawn("yarn", ["run", "dhcp_server"], { stdio: "inherit", shell: true });
spawn("yarn", ["run", "dhcp_server"], { stdio: "inherit", shell: true });
} else {
spawn("sudo", ["yarn", "run", "dhcp_server"], { stdio: "inherit" });
spawn("sudo", ["yarn", "run", "dhcp_server"], { stdio: "inherit" });
}
4 changes: 2 additions & 2 deletions test/http_server_cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ const { spawn } = require("child_process");
const os = require("os");

spawn("yarn", ["run", "http_server"], {
stdio: "inherit",
shell: os.platform() === "win32"
stdio: "inherit",
shell: os.platform() === "win32"
});

0 comments on commit fe9e47f

Please sign in to comment.