Skip to content

Commit

Permalink
Fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandroasm committed Oct 8, 2020
1 parent dce2063 commit ef43b7f
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions test/specs/core.layouts.tests.js
Expand Up @@ -668,24 +668,24 @@ describe('Chart.layouts', function() {
type: 'line',
responsive: true,
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3]
}]
},
options: {
scales: {
yAxes: [{
type: 'linear',
label: 'first axis',
position: 'right'
}, {
type: 'linear',
label: 'second axis',
position: 'right'
}]
}
yAxes: [{
type: 'linear',
label: 'first axis',
position: 'right'
}, {
type: 'linear',
label: 'second axis',
position: 'right'
}]
}
}
});

Expand All @@ -694,6 +694,4 @@ describe('Chart.layouts', function() {

});
});


});

0 comments on commit ef43b7f

Please sign in to comment.