diff --git a/api_tests/src/user.spec.ts b/api_tests/src/user.spec.ts index 89f26c4ff..2521472ec 100644 --- a/api_tests/src/user.spec.ts +++ b/api_tests/src/user.spec.ts @@ -119,7 +119,9 @@ test("Requests with invalid auth should be treated as unauthenticated", async () headers: { Authorization: "Bearer foobar" }, fetchFunction, }); - await expect(getMyUser(invalid_auth)).rejects.toStrictEqual(Error("incorrect_login")); + await expect(getMyUser(invalid_auth)).rejects.toStrictEqual( + Error("incorrect_login"), + ); let site = await getSite(invalid_auth); expect(site.site_view).toBeDefined();