@@ -25,7 +25,6 @@ import {
2525 detectParatestStubs ,
2626 detectPestStubs ,
2727 detectPhpUnitStubs ,
28- normalPath ,
2928 pestProject ,
3029 phpUnitProject ,
3130} from './PHPUnit/__tests__/utils' ;
@@ -143,7 +142,7 @@ describe('Extension Test', () => {
143142 setWorkspaceFolders ( [ { index : 0 , name : 'phpunit' , uri : Uri . file ( root ) } ] ) ;
144143 setTextDocuments ( globTextDocuments ( '**/*Test.php' , { cwd : root } ) ) ;
145144 ( context . subscriptions . push as unknown as Mock ) . mockReset ( ) ;
146- cwd = normalPath ( root ) ;
145+ cwd = root ;
147146 const configuration = workspace . getConfiguration ( 'phpunit' ) ;
148147 await configuration . update ( 'php' , phpBinary ) ;
149148 await configuration . update ( 'phpunit' , phpunitBinary ) ;
@@ -371,7 +370,7 @@ describe('Extension Test', () => {
371370 expectSpawnCalled ( [
372371 binary ,
373372 '--group=integration' ,
374- normalPath ( phpUnitProject ( 'tests/AttributeTest.php' ) ) ,
373+ phpUnitProject ( 'tests/AttributeTest.php' ) ,
375374 '--colors=never' ,
376375 '--teamcity' ,
377376 ] ) ;
@@ -383,7 +382,7 @@ describe('Extension Test', () => {
383382 expectSpawnCalled ( [
384383 binary ,
385384 filterPattern ( 'test_passed' ) ,
386- normalPath ( phpUnitProject ( 'tests/AssertionsTest.php' ) ) ,
385+ phpUnitProject ( 'tests/AssertionsTest.php' ) ,
387386 '--colors=never' ,
388387 '--teamcity' ,
389388 ] ) ;
@@ -401,7 +400,7 @@ describe('Extension Test', () => {
401400 expectSpawnCalled ( [
402401 binary ,
403402 filterPattern ( 'test_passed' ) ,
404- normalPath ( phpUnitProject ( 'tests/AssertionsTest.php' ) ) ,
403+ phpUnitProject ( 'tests/AssertionsTest.php' ) ,
405404 '--colors=never' ,
406405 '--teamcity' ,
407406 ] ) ;
@@ -464,7 +463,7 @@ describe('Extension Test', () => {
464463
465464 expectSpawnCalled ( [
466465 binary ,
467- normalPath ( phpUnitProject ( 'tests/AssertionsTest.php' ) ) ,
466+ phpUnitProject ( 'tests/AssertionsTest.php' ) ,
468467 '--colors=never' ,
469468 '--teamcity' ,
470469 ] ) ;
@@ -482,7 +481,7 @@ describe('Extension Test', () => {
482481 expectSpawnCalled ( [
483482 binary ,
484483 filterPattern ( 'test_passed' ) ,
485- normalPath ( phpUnitProject ( 'tests/AssertionsTest.php' ) ) ,
484+ phpUnitProject ( 'tests/AssertionsTest.php' ) ,
486485 '--colors=never' ,
487486 '--teamcity' ,
488487 ] ) ;
@@ -559,7 +558,7 @@ describe('Extension Test', () => {
559558 expectSpawnCalled ( [
560559 binary ,
561560 filterPattern ( method ) ,
562- normalPath ( phpUnitProject ( 'tests/AssertionsTest.php' ) ) ,
561+ phpUnitProject ( 'tests/AssertionsTest.php' ) ,
563562 '--colors=never' ,
564563 '--teamcity' ,
565564 '--functional' ,
0 commit comments