@@ -23,7 +23,7 @@ describe('Swift Testing line parsers', () => {
2323
2424 it ( 'should parse a passed test with verbose aka suffix' , ( ) => {
2525 const result = parseSwiftTestingResultLine (
26- " ✔ Test \ "String operations\ " (aka 'stringTest()') passed after 0.001 seconds." ,
26+ ' ✔ Test "String operations" (aka \ 'stringTest()\ ') passed after 0.001 seconds.' ,
2727 ) ;
2828 expect ( result ) . toEqual ( {
2929 status : 'passed' ,
@@ -59,7 +59,7 @@ describe('Swift Testing line parsers', () => {
5959
6060 it ( 'should parse a failed test with verbose aka suffix' , ( ) => {
6161 const result = parseSwiftTestingResultLine (
62- " ✘ Test \ "Expected failure\ " (aka 'deliberateFailure()') failed after 0.001 seconds with 1 issue." ,
62+ ' ✘ Test "Expected failure" (aka \ 'deliberateFailure()\ ') failed after 0.001 seconds with 1 issue.' ,
6363 ) ;
6464 expect ( result ) . toEqual ( {
6565 status : 'failed' ,
@@ -129,7 +129,7 @@ describe('Swift Testing line parsers', () => {
129129
130130 it ( 'should parse an issue with verbose aka suffix' , ( ) => {
131131 const result = parseSwiftTestingIssueLine (
132- " ✘ Test \ "Expected failure\ " (aka 'deliberateFailure()') recorded an issue at AuditTests.swift:5:5: Expectation failed: true == false" ,
132+ ' ✘ Test "Expected failure" (aka \ 'deliberateFailure()\ ') recorded an issue at AuditTests.swift:5:5: Expectation failed: true == false' ,
133133 ) ;
134134 expect ( result ) . toEqual ( {
135135 rawTestName : 'Expected failure' ,
@@ -164,7 +164,7 @@ describe('Swift Testing line parsers', () => {
164164
165165 it ( 'should parse an issue without location with verbose aka suffix' , ( ) => {
166166 const result = parseSwiftTestingIssueLine (
167- " ✘ Test \ "Some test\ " (aka 'someFunc()') recorded an issue: Something went wrong" ,
167+ ' ✘ Test "Some test" (aka \ 'someFunc()\ ') recorded an issue: Something went wrong' ,
168168 ) ;
169169 expect ( result ) . toEqual ( {
170170 rawTestName : 'Some test' ,
0 commit comments