Skip to content

Commit 9083fcc

Browse files
committed
fix directory separator for unix
1 parent 6ecb927 commit 9083fcc

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

tests/units/PHP/CodeFormatter/Decorators/NewLineAfterTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace PHP\CodeFormatter\Decorators;
44

5-
require_once 'PHPUnit\Framework\TestCase.php';
6-
require_once 'src\PHP\CodeFormatter\Decorators\DecoratorInterface.php';
7-
require_once 'src\PHP\CodeFormatter\Decorators\NewLine.php';
8-
require_once 'src\PHP\CodeFormatter\Decorators\NewLineAfter.php';
5+
require_once 'PHPUnit/Framework/TestCase.php';
6+
require_once '../../src/PHP/CodeFormatter/Decorators/DecoratorInterface.php';
7+
require_once '../../src/PHP/CodeFormatter/Decorators/NewLine.php';
8+
require_once '../../src/PHP/CodeFormatter/Decorators/NewLineAfter.php';
99

1010
/**
1111
* NewLineBefore test case.

tests/units/PHP/CodeFormatter/Decorators/NewLineBeforeTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace PHP\CodeFormatter\Decorators;
44

5-
require_once 'PHPUnit\Framework\TestCase.php';
6-
require_once 'src\PHP\CodeFormatter\Decorators\DecoratorInterface.php';
7-
require_once 'src\PHP\CodeFormatter\Decorators\NewLine.php';
8-
require_once 'src\PHP\CodeFormatter\Decorators\NewLineBefore.php';
5+
require_once 'PHPUnit/Framework/TestCase.php';
6+
require_once '../../src/PHP/CodeFormatter/Decorators/DecoratorInterface.php';
7+
require_once '../../src/PHP/CodeFormatter/Decorators/NewLine.php';
8+
require_once '../../src/PHP/CodeFormatter/Decorators/NewLineBefore.php';
99

1010

1111
/**

tests/units/PHP/CodeFormatter/Decorators/NewLineTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace PHP\CodeFormatter\Decorators;
44

5-
require_once 'PHPUnit\Framework\TestCase.php';
6-
require_once 'src\PHP\CodeFormatter\Decorators\DecoratorInterface.php';
7-
require_once 'src\PHP\CodeFormatter\Decorators\NewLine.php';
5+
require_once 'PHPUnit/Framework/TestCase.php';
6+
require_once '../../src/PHP/CodeFormatter/Decorators/DecoratorInterface.php';
7+
require_once '../../src/PHP/CodeFormatter/Decorators/NewLine.php';
88

99
/**
1010
* NewLineBefore test case.

0 commit comments

Comments
 (0)