Skip to content

Commit

Permalink
Fixed wrong width assertion (#3665)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranbena authored Apr 1, 2019
1 parent 6f9aee4 commit 5decd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/cypress/integration/dashboard/dashboard_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ describe('Dashboard', () => {
const { top, left } = $el.offset();
expect(top).to.eq(214);
expect(left).to.eq(215);
expect($el.width()).to.eq(585);
expect($el.width()).to.eq(600);
expect($el.height()).to.eq(185);
});
});
Expand Down

0 comments on commit 5decd26

Please sign in to comment.