Skip to content

Commit

Permalink
[VernDialog] Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Apr 23, 2024
1 parent 2d88361 commit 78a7923
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const mockStore = configureMockStore()(mockState);
describe("VernDialog", () => {
it("handles empty list", () => {
createVernDialogInstance([], true);
const menuItems = testRenderer.root.findAllByType(VernList);
expect(menuItems).toHaveLength(0);
const vernList = testRenderer.root.findAllByType(VernList);
expect(vernList).toHaveLength(0);
});
});

Expand Down

0 comments on commit 78a7923

Please sign in to comment.