@@ -280,7 +280,7 @@ describe('@actions/core', () => {
280
280
endLine : 5
281
281
} )
282
282
assertWriteCalls ( [
283
- `::error title=A title,line=5,end_line =5,col=1,end_column =2::Error: ${ message } ${ os . EOL } `
283
+ `::error title=A title,line=5,endLine =5,col=1,endColumn =2::Error: ${ message } ${ os . EOL } `
284
284
] )
285
285
} )
286
286
@@ -310,7 +310,7 @@ describe('@actions/core', () => {
310
310
endLine : 5
311
311
} )
312
312
assertWriteCalls ( [
313
- `::warning title=A title,line=5,end_line =5,col=1,end_column =2::Error: ${ message } ${ os . EOL } `
313
+ `::warning title=A title,line=5,endLine =5,col=1,endColumn =2::Error: ${ message } ${ os . EOL } `
314
314
] )
315
315
} )
316
316
@@ -324,14 +324,12 @@ describe('@actions/core', () => {
324
324
} )
325
325
expect ( commandProperties . title ) . toBe ( 'A title' )
326
326
expect ( commandProperties . col ) . toBe ( 1 )
327
- expect ( commandProperties . end_column ) . toBe ( 2 )
327
+ expect ( commandProperties . endColumn ) . toBe ( 2 )
328
328
expect ( commandProperties . line ) . toBe ( 5 )
329
- expect ( commandProperties . end_line ) . toBe ( 5 )
329
+ expect ( commandProperties . endLine ) . toBe ( 5 )
330
330
331
331
expect ( commandProperties . startColumn ) . toBeUndefined ( )
332
- expect ( commandProperties . endColumn ) . toBeUndefined ( )
333
332
expect ( commandProperties . startLine ) . toBeUndefined ( )
334
- expect ( commandProperties . endLine ) . toBeUndefined ( )
335
333
} )
336
334
337
335
it ( 'startGroup starts a new group' , ( ) => {
0 commit comments