From 1e0a893c3e5239331f2385e1d50c56c44ad0552b Mon Sep 17 00:00:00 2001 From: Aleksei Androsov Date: Tue, 29 Aug 2017 08:54:27 +0300 Subject: [PATCH] Fix "no-unused-styles" suite name otherwise validations schema is leaked to 'split-platform-components' --- tests/lib/rules/no-unused-styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/rules/no-unused-styles.js b/tests/lib/rules/no-unused-styles.js index 1658b89..90c5411 100644 --- a/tests/lib/rules/no-unused-styles.js +++ b/tests/lib/rules/no-unused-styles.js @@ -236,4 +236,4 @@ const config = { tests.valid.forEach(t => Object.assign(t, config)); tests.invalid.forEach(t => Object.assign(t, config)); -ruleTester.run('split-platform-components', rule, tests); +ruleTester.run('no-unused-styles', rule, tests);