diff --git a/test/unit/recipe/thirdparty/signInUp.test.tsx b/test/unit/recipe/thirdparty/signInUp.test.tsx
index 79b1afcf8..d3a492c74 100644
--- a/test/unit/recipe/thirdparty/signInUp.test.tsx
+++ b/test/unit/recipe/thirdparty/signInUp.test.tsx
@@ -58,7 +58,7 @@ describe("ThirdParty.SignInAndUp", () => {
{
id: "custom",
name: "Custom",
- logo: "LOGO" as any,
+ logo: LOGO,
},
],
},
@@ -94,7 +94,7 @@ describe("ThirdParty.SignInAndUp", () => {
});
test("check if the logo is rendered, when a logo is provided for custom providers", async () => {
- const result = render();
+ const result = render();
expect(await result.findByText("LOGO")).toBeInTheDocument();
});