@@ -151,11 +151,11 @@ describe('addReportFooters', () => {
151151 addReportFooters ( report , inputs , true )
152152
153153 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
154- expect . stringContaining ( 'Comparison with' )
154+ expect . stringContaining ( '± Comparison with' )
155155 )
156156 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
157157 expect . stringContaining (
158- 'by [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
158+ 'at [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
159159 )
160160 )
161161 } )
@@ -201,7 +201,7 @@ describe('addReportFooters', () => {
201201 addReportFooters ( report , inputs , true )
202202
203203 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
204- expect . stringContaining ( 'Comparison with' )
204+ expect . stringContaining ( '± Comparison with' )
205205 )
206206 } )
207207
@@ -396,7 +396,7 @@ describe('addReportFooters', () => {
396396 )
397397 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
398398 expect . stringContaining (
399- 'by [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
399+ 'at [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
400400 )
401401 )
402402 } )
@@ -448,7 +448,7 @@ describe('addReportFooters', () => {
448448 )
449449 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
450450 expect . stringContaining (
451- 'by [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
451+ 'at [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
452452 )
453453 )
454454 } )
@@ -498,7 +498,7 @@ describe('addReportFooters', () => {
498498
499499 // Should only contain commit, not build info (since buildNumber is required)
500500 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
501- expect . stringContaining ( 'Comparison with' )
501+ expect . stringContaining ( '± Comparison with' )
502502 )
503503 } )
504504
@@ -551,7 +551,7 @@ describe('addReportFooters', () => {
551551 )
552552 expect ( mockCore . summary . addRaw ) . toHaveBeenCalledWith (
553553 expect . stringContaining (
554- 'by [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
554+ 'at [abcdef1](https://github.com/test-owner/test-repo/commit/abcdef1234567890)'
555555 )
556556 )
557557 expect ( mockCore . summary . addRaw ) . not . toHaveBeenCalledWith (
0 commit comments