From 00de830f88a77fd8f8a19ec314c7d5369d2a5209 Mon Sep 17 00:00:00 2001 From: Paul Paterson Date: Mon, 16 Dec 2024 13:29:42 -0500 Subject: [PATCH] formatting --- test/query.mjs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/query.mjs b/test/query.mjs index be43c7e5..eaa04eef 100644 --- a/test/query.mjs +++ b/test/query.mjs @@ -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.", + ), ); }); });