Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Jan 16, 2025
1 parent cd1012a commit e183672
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion test/commands/query/v10.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
//@ts-check

import { expect } from "chai";
import { AbortError, ConstraintFailureError, NetworkError, ServiceError } from "fauna";
import {
AbortError,
ConstraintFailureError,
NetworkError,
ServiceError,
} from "fauna";
import sinon from "sinon";

import { run } from "../../../src/cli.mjs";
Expand Down
4 changes: 3 additions & 1 deletion test/commands/query/v4.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ describe("query v4", function () {
expect(logger.stderr).to.have.been.calledWith(
sinon.match(" x-byte-read-ops: 0"),
);
expect(logger.stdout).to.have.been.calledWith(sinon.match("test response"));
expect(logger.stdout).to.have.been.calledWith(
sinon.match("test response"),
);
});

it("can display query info with an error", async function () {
Expand Down

0 comments on commit e183672

Please sign in to comment.