Skip to content

Commit

Permalink
Fix broken test case and remote lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurits Rijk committed Jul 7, 2017
1 parent a988806 commit f26a4a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/cat.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function* explainLength(values, specs, via) {
reason: 'Insufficient input',
pred: 'isString',
val: undefined,
via: [],
via,
'in': []
};
}
Expand Down
2 changes: 1 addition & 1 deletion lib/question.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const _ = require('lodash');
const {gen: tcg} = require('testcheck');

const {conform, invalidString} = require('./conform');
const {explainData, firstProblem} = require('./explainData');
const {firstProblem} = require('./explainData');
const {gen} = require('./gen');

const describe = require('./util/describe');
Expand Down
2 changes: 1 addition & 1 deletion test/cat.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('Test the cat function', () => {
reason: 'Insufficient input',
pred: 'isString',
val: undefined,
via: [],
via: ['::ingredient'],
'in': []
}
]
Expand Down

0 comments on commit f26a4a1

Please sign in to comment.