Skip to content

Commit

Permalink
ff4 tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
legomushroom committed Jul 25, 2015
1 parent 2215b48 commit 33b2eeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/transit.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ describe 'Transit ->', ->
expect(byte.el.style.top) .not.toBe '10px'
s = byte.el.style
tr = if s.transform? then s.transform else s["#{mojs.h.prefix.css}transform"]
expect(tr).toBe ''
expect(tr).toBeFalsy()
it 'should set new values', ->
byte = new Byte radius: 25, y: 10
byte.draw()
Expand Down
2 changes: 1 addition & 1 deletion spec/transit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@
expect(byte.el.style.top).not.toBe('10px');
s = byte.el.style;
tr = s.transform != null ? s.transform : s["" + mojs.h.prefix.css + "transform"];
return expect(tr).toBe('');
return expect(tr).toBeFalsy();
});
it('should set new values', function() {
var byte;
Expand Down

0 comments on commit 33b2eeb

Please sign in to comment.