Skip to content

Commit acffda6

Browse files
committed
Fix lint
1 parent ba1dbf3 commit acffda6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

site/src/pages/WorkspacePage/WorkspacePage.test.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,9 @@ describe("WorkspacePage", () => {
242242
});
243243
await user.click(confirmButton);
244244

245-
expect(cancelWorkspaceMock).toHaveBeenCalledWith(MockStartingWorkspace.latest_build.id);
245+
expect(cancelWorkspaceMock).toHaveBeenCalledWith(
246+
MockStartingWorkspace.latest_build.id,
247+
);
246248
});
247249

248250
it("requests cancellation when the user presses Cancel and the workspace is pending", async () => {
@@ -270,7 +272,10 @@ describe("WorkspacePage", () => {
270272
});
271273
await user.click(confirmButton);
272274

273-
expect(cancelWorkspaceMock).toHaveBeenCalledWith(MockPendingWorkspace.latest_build.id, { expect_status: "pending" });
275+
expect(cancelWorkspaceMock).toHaveBeenCalledWith(
276+
MockPendingWorkspace.latest_build.id,
277+
{ expect_status: "pending" },
278+
);
274279
});
275280

276281
it("requests an update when the user presses Update", async () => {

0 commit comments

Comments
 (0)