Skip to content

Commit

Permalink
test: fix test on linux (#80)
Browse files Browse the repository at this point in the history
#73 uncommented an assertion
which is known to fail on linux, so comment it once again.

Signed-off-by: Darshan Sen <[email protected]>
  • Loading branch information
RaisinTen authored Mar 3, 2023
1 parent b017a48 commit ebcf68c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ describe("postject CLI", () => {
],
{ encoding: "utf-8" }
);
expect(stderr).to.be.empty;
// TODO(dsanders11) - Enable this once we squelch LIEF warnings
// expect(stderr).to.be.empty;
expect(stdout).to.have.string("Injection done!");
expect(status).to.equal(0);
}
Expand Down

0 comments on commit ebcf68c

Please sign in to comment.