Skip to content

Commit 3142a22

Browse files
committed
Fix js test
1 parent ba3f15d commit 3142a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacesPage/WorkspacesPage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("WorkspacesPage", () => {
1515
it("renders an empty workspaces page", async () => {
1616
// Given
1717
server.use(
18-
rest.get("/api/v2/users/me/workspaces", async (req, res, ctx) => {
18+
rest.get("/api/v2/workspaces", async (req, res, ctx) => {
1919
return res(ctx.status(200), ctx.json([]))
2020
}),
2121
)

0 commit comments

Comments
 (0)