Skip to content

Commit

Permalink
Fix test after merging main
Browse files Browse the repository at this point in the history
  • Loading branch information
nishasy committed Mar 13, 2024
1 parent 1ba762f commit 19b34f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ describe("locked layer", () => {
// eslint-disable-next-line testing-library/no-container, testing-library/no-node-access
const points = container.querySelectorAll(
// Filter out the interactive points' circles
"circle:not([class*='mafs-movable-point'])",
"circle:not([class*='movable-point'])",
);

// Act
Expand All @@ -212,7 +212,7 @@ describe("locked layer", () => {
// Act
// eslint-disable-next-line testing-library/no-container, testing-library/no-node-access
const points = container.querySelectorAll(
"circle:not([class*='mafs-movable-point'])",
"circle:not([class*='movable-point'])",
);

// Assert
Expand Down

0 comments on commit 19b34f8

Please sign in to comment.