Skip to content

Commit

Permalink
misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Clement Procureur committed Nov 14, 2017
1 parent fde78f9 commit 822148f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions test/test.legendcolor.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ describe('d3-legend #legendColor', function() {
expect(result.locale).to.be.a('function');
});

it('should redifine label\'s format with a string', function () {
it('should redefine label\'s format with a string', function () {
let result = color();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -104,7 +104,7 @@ describe('d3-legend #legendColor', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine label\'s format with a format function', function () {
it('should redefine label\'s format with a format function', function () {
let result = color();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -114,7 +114,7 @@ describe('d3-legend #legendColor', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine the locale with a new locale definition', function () {
it('should redefine the locale with a new locale definition', function () {
let result = color();
let testValue = 1.00;

Expand Down
6 changes: 3 additions & 3 deletions test/test.legendsize.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('d3-legend #legendSize', function() {
expect(result.locale).to.be.a('function');
});

it('should redifine label\'s format with a string', function () {
it('should redefine label\'s format with a string', function () {
let result = size();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -26,7 +26,7 @@ describe('d3-legend #legendSize', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine label\'s format with a format function', function () {
it('should redefine label\'s format with a format function', function () {
let result = size();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -36,7 +36,7 @@ describe('d3-legend #legendSize', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine the locale with a new locale definition', function () {
it('should redefine the locale with a new locale definition', function () {
let result = size();
let testValue = 1.00;

Expand Down
6 changes: 3 additions & 3 deletions test/test.legendsymbol.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('d3-legend #legendSymbol', function() {
expect(result.locale).to.be.a('function');
});

it('should redifine label\'s format with a string', function () {
it('should redefine label\'s format with a string', function () {
let result = symbol();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -26,7 +26,7 @@ describe('d3-legend #legendSymbol', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine label\'s format with a format function', function () {
it('should redefine label\'s format with a format function', function () {
let result = symbol();
let testValue = 1.00;
let initial = result.labelFormat();
Expand All @@ -36,7 +36,7 @@ describe('d3-legend #legendSymbol', function() {
expect(result.labelFormat()(testValue)).to.be.equal('1.00');
});

it('should redifine the locale with a new locale definition', function () {
it('should redefine the locale with a new locale definition', function () {
let result = symbol();
let testValue = 1.00;

Expand Down

0 comments on commit 822148f

Please sign in to comment.