Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
fix(test): update test for chartsByScale to use variadic instead of a…
Browse files Browse the repository at this point in the history
…rray in first argument
  • Loading branch information
bas080 committed Nov 15, 2016
1 parent bc2b44c commit 902f04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/config.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('Config', () => {
config.registerScales('c', [quan, qual]);

expect(
config.chartsByScale([quan, quan])
config.chartsByScale(quan, quan)
).toEqual([target]);
});
});

0 comments on commit 902f04b

Please sign in to comment.