Skip to content

Commit

Permalink
Fixed syntax error in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderby committed Dec 22, 2016
1 parent 18c7697 commit 8e8443b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scales-factory.test.js
Expand Up @@ -414,14 +414,14 @@ define(function (require) {
expect(scale2.stepSize()).to.equal(0);

var scale3 = new LinearScale(
{full: () => [{i: 120}, {i: 120}, {i: 120}]}, ,
{full: () => [{i: 120}, {i: 120}, {i: 120}]},
{
dim: 'i'
}).create([0, 100]);
expect(scale3.domain()).to.deep.equal([20, 220]);

var scale4 = new LinearScale(
{full: () => [{i: 0}, {i: 0}, {i: 0}]}, ,
{full: () => [{i: 0}, {i: 0}, {i: 0}]},
{
dim: 'i'
}).create([0, 100]);
Expand Down

0 comments on commit 8e8443b

Please sign in to comment.