Skip to content

Commit

Permalink
removed whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Kronick committed Feb 3, 2017
1 parent 5446f8a commit d46ccb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/js/style-spec/function.test.js
Expand Up @@ -693,16 +693,16 @@ test('categorical function', (t) => {
type: 'string'
});

t.equal(numberKeys(0, {foo: "0"}), 'default');
t.equal(numberKeys(0, {foo: "1"}), 'default');
t.equal(numberKeys(0, {foo: '0'}), 'default');
t.equal(numberKeys(0, {foo: '1'}), 'default');
t.equal(numberKeys(0, {foo: false}), 'default');
t.equal(numberKeys(0, {foo: true}), 'default');

t.equal(stringKeys(0, {foo: 0}), 'default');
t.equal(stringKeys(0, {foo: 1}), 'default');
t.equal(stringKeys(0, {foo: false}), 'default');
t.equal(stringKeys(0, {foo: true}), 'default');

t.end();
});

Expand Down

0 comments on commit d46ccb2

Please sign in to comment.