Skip to content

Commit

Permalink
fix 90 statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nstclair-cc committed Sep 11, 2024
1 parent 8aa238e commit f002638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/functional/tile_tests/geometry_tool_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ context('Geometry Tool', function () {
// Also check that the angle label has changed from its original value
geometryToolTile.getAngleAdornment().should(($label) => {
const angleText = $label.text();
expect(angleText).not.contains('90°'); // 90° was the original value
expect(angleText).not.to.equal('90'); // 90° was the original value
});

// Move the point back to the original position
Expand Down

0 comments on commit f002638

Please sign in to comment.