Skip to content

Commit

Permalink
Fix failed test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed Sep 29, 2017
1 parent b7caf5d commit 0e88b26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('G-code Toolpath', () => {

new GCodeToolpath()
.loadFromFile(file, (err, results) => {
expect(err).to.be.okay;
expect(err).to.be.null;
done();
})
.on('data', (data) => {
Expand All @@ -51,7 +51,7 @@ describe('G-code Toolpath', () => {

new GCodeToolpath()
.loadFromStream(stream, (err, results) => {
expect(err).to.be.okay;
expect(err).to.be.null;
done();
})
.on('data', (data) => {
Expand All @@ -68,7 +68,7 @@ describe('G-code Toolpath', () => {

new GCodeToolpath()
.loadFromString(string, (err, results) => {
expect(err).to.be.okay;
expect(err).to.be.null;
done();
})
.on('data', (data) => {
Expand Down

0 comments on commit 0e88b26

Please sign in to comment.