Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
test(toolbar): fix ie problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Sep 8, 2014
1 parent 41688d4 commit 72beaec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/toolbar/toolbar.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('<material-toolbar>', function() {

// IE gives us back a matrix with -100 in it, everything else gives us -100px
expect(toolbar.css($materialEffects.TRANSFORM)).toContain('-100');
expect(contentEl.css('margin-top')).toEqual('-100');
expect(contentEl.css('margin-top')).toContain('-100');

// Fake scroll back to the top
TestUtil.triggerEvent(contentEl, 'scroll', {
Expand Down

0 comments on commit 72beaec

Please sign in to comment.