Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Test: fixed horrible typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fvdm committed Mar 28, 2016
1 parent 63c4356 commit 5e26570
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dotest.add ('checksum valid', function () {

dotest.test ()
.isBoolean ('fail', 'data', data)
.isExactly ('fail', 'data', true)
.isExactly ('fail', 'data', data, true)
.done ();
});

Expand All @@ -44,7 +44,7 @@ dotest.add ('checksum invalid', function () {

dotest.test ()
.isBoolean ('fail', 'data', data)
.isExactly ('fail', 'data', false)
.isExactly ('fail', 'data', data, false)
.done ();
});

Expand All @@ -67,7 +67,7 @@ dotest.add ('parse valid', function () {
.isExactly ('fail', 'data.gps.fix', data && data.gps && data.gps.fix, 'active')
.isObject ('fail', 'data.geo', data && data.geo)
.isExactly ('fail', 'data.geo.latitude', data && data.geo && data.geo.latitude, 52.217078)
.isExactly ('fail', 'data.geo.longitude', data && data.geo && data.geo.longitudr, 5.279595)
.isExactly ('fail', 'data.geo.longitude', data && data.geo && data.geo.longitude, 5.279595)
.isExactly ('fail', 'data.geo.bearing', data && data.geo && data.geo.bearing, 273)
.isObject ('fail', 'data.speed', data && data.speed)
.isExactly ('fail', 'data.speed.knots', data && data.speed && data.speed.knots, 0)
Expand Down

0 comments on commit 5e26570

Please sign in to comment.