Skip to content

Commit 463f85a

Browse files
committed
updating test for fix
1 parent 6794aa3 commit 463f85a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LiveComponent/assets/test/directives_parser.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ describe('directives parser', () => {
193193
it('missing ending )', () => {
194194
expect(() => {
195195
parseDirectives('addClass(opacity-50');
196-
}).toThrow('Did you forget to add a closing ") after "addClass"?')
196+
}).toThrow('Did you forget to add a closing ")" after "addClass"?')
197197
});
198198

199199
it('missing ending before next action', () => {
200200
expect(() => {
201201
parseDirectives('addClass(opacity-50 hide');
202-
}).toThrow('Did you forget to add a closing ") after "addClass"?')
202+
}).toThrow('Did you forget to add a closing ")" after "addClass"?')
203203
});
204204

205205
it('no space between actions', () => {

0 commit comments

Comments
 (0)