Skip to content

Commit

Permalink
Update examples/tests/sdk_tests/util/exec.test.w
Browse files Browse the repository at this point in the history
Co-authored-by: Elad Ben-Israel <[email protected]>
  • Loading branch information
tsuf239 and eladb authored Aug 14, 2024
1 parent d7168c6 commit cc2f1f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/tests/sdk_tests/util/exec.test.w
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ let assertThrows = inflight (expected: str, block: (): void) => {

let output1 = util.exec("echo", ["-n", "Hello, Wing!"]);

expect.equal(output1.stdout, "Hello, Wing!");
expect.equal(output1.stderr, "");
expect.equal(output1.status, 0);
expect.equal(output1.stdout, "Hello, Wing!");
expect.equal(output1.stderr, "");
expect.equal(output1.status, 0);


test "exec()" {
Expand Down

0 comments on commit cc2f1f3

Please sign in to comment.