Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Dec 16, 2024
1 parent 9022f02 commit 00de830
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/query.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,13 @@ describe("query", function () {

it("cannot specify '--include none' with any other options", async function () {
try {
await run(
`query "foo" --secret=foo --include none summary`,
container,
);
await run(`query "foo" --secret=foo --include none summary`, container);
} catch (e) {}

expect(logger.stderr).to.have.been.calledWith(
sinon.match("'--include none' cannot be used with other include options."),
sinon.match(
"'--include none' cannot be used with other include options.",
),
);
});
});
Expand Down

0 comments on commit 00de830

Please sign in to comment.