From ef43b7f871474b466f70bbca0d21b9e78f6fc54d Mon Sep 17 00:00:00 2001 From: Alessandro Menezes Date: Tue, 6 Oct 2020 10:23:24 -0400 Subject: [PATCH] Fixing lint errors --- test/specs/core.layouts.tests.js | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/test/specs/core.layouts.tests.js b/test/specs/core.layouts.tests.js index 1f4ac15ae68..c191f203341 100644 --- a/test/specs/core.layouts.tests.js +++ b/test/specs/core.layouts.tests.js @@ -668,7 +668,7 @@ 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] @@ -676,16 +676,16 @@ describe('Chart.layouts', function() { }, 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' + }] + } } }); @@ -694,6 +694,4 @@ describe('Chart.layouts', function() { }); }); - - });