@@ -6,7 +6,7 @@ describe('import-destructruing-spacing', () => {
6
6
let source = `import {Foo} from './foo'` ;
7
7
8
8
assertFailure ( 'import-destructuring-spacing' , source , {
9
- message : 'You need to leave whitespaces inside of the import statement\'s curly braces ($$03-05$$) ' ,
9
+ message : 'You need to leave whitespaces inside of the import statement\'s curly braces' ,
10
10
startPosition : {
11
11
line : 0 ,
12
12
character : 7
@@ -22,7 +22,7 @@ describe('import-destructruing-spacing', () => {
22
22
let source = `import {Foo,Bar} from './foo'` ;
23
23
24
24
assertFailure ( 'import-destructuring-spacing' , source , {
25
- message : 'You need to leave whitespaces inside of the import statement\'s curly braces ($$03-05$$) ' ,
25
+ message : 'You need to leave whitespaces inside of the import statement\'s curly braces' ,
26
26
startPosition : {
27
27
line : 0 ,
28
28
character : 7
@@ -38,7 +38,7 @@ describe('import-destructruing-spacing', () => {
38
38
let source = `import {Foo, Bar} from './foo'` ;
39
39
40
40
assertFailure ( 'import-destructuring-spacing' , source , {
41
- message : 'You need to leave whitespaces inside of the import statement\'s curly braces ($$03-05$$) ' ,
41
+ message : 'You need to leave whitespaces inside of the import statement\'s curly braces' ,
42
42
startPosition : {
43
43
line : 0 ,
44
44
character : 7
@@ -54,7 +54,7 @@ describe('import-destructruing-spacing', () => {
54
54
let source = `import { Foo} from './foo';`
55
55
56
56
assertFailure ( 'import-destructuring-spacing' , source , {
57
- message : 'You need to leave whitespaces inside of the import statement\'s curly braces ($$03-05$$) ' ,
57
+ message : 'You need to leave whitespaces inside of the import statement\'s curly braces' ,
58
58
startPosition : {
59
59
line : 0 ,
60
60
character : 7
@@ -70,7 +70,7 @@ describe('import-destructruing-spacing', () => {
70
70
let source = `import {Foo } from './foo';`
71
71
72
72
assertFailure ( 'import-destructuring-spacing' , source , {
73
- message : 'You need to leave whitespaces inside of the import statement\'s curly braces ($$03-05$$) ' ,
73
+ message : 'You need to leave whitespaces inside of the import statement\'s curly braces' ,
74
74
startPosition : {
75
75
line : 0 ,
76
76
character : 7
0 commit comments