aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/InputText.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/InputText.test.tsx')
-rw-r--r--frontend/app/components/InputText.test.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/InputText.test.tsx b/frontend/app/components/InputText.test.tsx
index 2072b37..6fbdd27 100644
--- a/frontend/app/components/InputText.test.tsx
+++ b/frontend/app/components/InputText.test.tsx
@@ -31,6 +31,6 @@ describe("InputText", () => {
test("has border styling", () => {
render(<InputText data-testid="input" />);
const input = screen.getByTestId("input");
- expect(input.className).toContain("border-sky-600");
+ expect(input.className).toContain("border-brand-600");
});
});