@@ -72,7 +72,7 @@ ruleTester.run('curly-bracket-spacing', rule, {
72
72
output : '<template><div>{{ }}</div></template>' ,
73
73
options : [ 'always' ] ,
74
74
errors : [ {
75
- message : 'Found 9 whitespaces but there should be 1 .' ,
75
+ message : 'Found 9 whitespaces, 1 expected .' ,
76
76
type : 'VExpressionEnd'
77
77
} ]
78
78
} ,
@@ -82,7 +82,7 @@ ruleTester.run('curly-bracket-spacing', rule, {
82
82
output : '<template><div>{{ text }}</div></template>' ,
83
83
options : [ 'always' ] ,
84
84
errors : [ {
85
- message : 'Found none whitespaces but there should be 1 .' ,
85
+ message : 'Found none whitespaces, 1 expected .' ,
86
86
type : 'VExpressionEnd'
87
87
} ]
88
88
} ,
@@ -92,7 +92,7 @@ ruleTester.run('curly-bracket-spacing', rule, {
92
92
output : '<template><div>{{ text }}</div></template>' ,
93
93
options : [ 'always' ] ,
94
94
errors : [ {
95
- message : 'Found none whitespaces but there should be 1 .' ,
95
+ message : 'Found none whitespaces, 1 expected .' ,
96
96
type : 'Identifier'
97
97
} ]
98
98
} ,
@@ -102,7 +102,7 @@ ruleTester.run('curly-bracket-spacing', rule, {
102
102
output : '<template><div>{{text}}</div></template>' ,
103
103
options : [ 'never' ] ,
104
104
errors : [ {
105
- message : 'Found 1 whitespaces but there should be none.' ,
105
+ message : 'Found 1 whitespaces, none expected .' ,
106
106
type : 'Identifier'
107
107
} ]
108
108
} ,
@@ -112,7 +112,7 @@ ruleTester.run('curly-bracket-spacing', rule, {
112
112
output : '<template><div>{{text}}</div></template>' ,
113
113
options : [ 'never' ] ,
114
114
errors : [ {
115
- message : 'Found 1 whitespaces but there should be none.' ,
115
+ message : 'Found 1 whitespaces, none expected .' ,
116
116
type : 'VExpressionEnd'
117
117
} ]
118
118
} ,
@@ -122,10 +122,10 @@ ruleTester.run('curly-bracket-spacing', rule, {
122
122
output : '<template><div>{{ text }}</div></template>' ,
123
123
options : [ 'always' ] ,
124
124
errors : [ {
125
- message : 'Found none whitespaces but there should be 1 .' ,
125
+ message : 'Found none whitespaces, 1 expected .' ,
126
126
type : 'Identifier'
127
127
} , {
128
- message : 'Found none whitespaces but there should be 1 .' ,
128
+ message : 'Found none whitespaces, 1 expected .' ,
129
129
type : 'VExpressionEnd'
130
130
} ]
131
131
} ,
@@ -135,10 +135,10 @@ ruleTester.run('curly-bracket-spacing', rule, {
135
135
output : '<template><div>{{text}}</div></template>' ,
136
136
options : [ 'never' ] ,
137
137
errors : [ {
138
- message : 'Found 1 whitespaces but there should be none.' ,
138
+ message : 'Found 1 whitespaces, none expected .' ,
139
139
type : 'Identifier'
140
140
} , {
141
- message : 'Found 1 whitespaces but there should be none.' ,
141
+ message : 'Found 1 whitespaces, none expected .' ,
142
142
type : 'VExpressionEnd'
143
143
} ]
144
144
} ,
@@ -148,10 +148,10 @@ ruleTester.run('curly-bracket-spacing', rule, {
148
148
output : '<template><div>{{ text }}</div></template>' ,
149
149
options : [ 'always' ] ,
150
150
errors : [ {
151
- message : 'Found 3 whitespaces but there should be 1 .' ,
151
+ message : 'Found 3 whitespaces, 1 expected .' ,
152
152
type : 'Identifier'
153
153
} , {
154
- message : 'Found 3 whitespaces but there should be 1 .' ,
154
+ message : 'Found 3 whitespaces, 1 expected .' ,
155
155
type : 'VExpressionEnd'
156
156
} ]
157
157
} ,
@@ -161,10 +161,10 @@ ruleTester.run('curly-bracket-spacing', rule, {
161
161
output : '<template><div>{{text}}</div></template>' ,
162
162
options : [ 'never' ] ,
163
163
errors : [ {
164
- message : 'Found 3 whitespaces but there should be none.' ,
164
+ message : 'Found 3 whitespaces, none expected .' ,
165
165
type : 'Identifier'
166
166
} , {
167
- message : 'Found 3 whitespaces but there should be none.' ,
167
+ message : 'Found 3 whitespaces, none expected .' ,
168
168
type : 'VExpressionEnd'
169
169
} ]
170
170
}
0 commit comments