Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Aug 17, 2024
1 parent dd54baa commit 65ef982
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/application/components/Cache/__tests__/Cache.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ describe("Cache component tests", () => {
renderWithApolloClient(<Cache clientId="1" />);

const searchInput =
await screen.findByPlaceholderText<HTMLInputElement>("Search queries");
await screen.findByPlaceholderText<HTMLInputElement>("Search cache");
await act(() => user.type(searchInput, "Result"));

const sidebar = screen.getByRole("complementary");
Expand Down Expand Up @@ -197,7 +197,7 @@ describe("Cache component tests", () => {

renderWithApolloClient(<Cache clientId="1" />);

const searchInput = await screen.findByPlaceholderText("Search queries");
const searchInput = await screen.findByPlaceholderText("Search cache");
await act(() => user.type(searchInput, "Res"));

const sidebar = screen.getByRole("complementary");
Expand Down

0 comments on commit 65ef982

Please sign in to comment.