Skip to content

Commit

Permalink
fix wording in test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
sghall committed Mar 23, 2017
1 parent bbd224f commit 5d614c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/withTransitions/stop.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ describe('stop', () => {
const line = wrapper.instance().line;

setTimeout(() => {
assert.isAbove(+line.getAttribute('x1'), 0, 'should be equal');
assert.isBelow(+line.getAttribute('x1'), 200, 'should be equal');
assert.isAbove(+line.getAttribute('y1'), 0, 'should be equal');
assert.isBelow(+line.getAttribute('y1'), 200, 'should be equal');
assert.isAbove(+line.getAttribute('x1'), 0, 'should be true');
assert.isBelow(+line.getAttribute('x1'), 200, 'should be true');
assert.isAbove(+line.getAttribute('y1'), 0, 'should be true');
assert.isBelow(+line.getAttribute('y1'), 200, 'should be true');
done();
}, DELAY + (DURATION * 1.1));
});
Expand Down

0 comments on commit 5d614c0

Please sign in to comment.