Skip to content

Commit

Permalink
Leftover from 28b0458
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jun 28, 2019
1 parent 7b4c302 commit be9e477
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/Framework/MockObject/MockClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function testGenerateClassFromSource(): void
{
$mockName = 'PHPUnit\TestFixture\MockObject\MockClassGenerated';

$file = __DIR__ . '/../../../_files/mock-object/MockClassGenerated.tpl.dist';
$file = __DIR__ . '/../../../_files/mock-object/MockClassGenerated.tpl';

$mockClass = new MockClass(\file_get_contents($file), $mockName, []);
$mockClass->generate();
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Framework/MockObject/MockTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function testGenerateClassFromSource(): void
{
$mockName = 'PHPUnit\TestFixture\MockObject\MockTraitGenerated';

$file = __DIR__ . '/../../../_files/mock-object/MockTraitGenerated.tpl.dist';
$file = __DIR__ . '/../../../_files/mock-object/MockTraitGenerated.tpl';

$mockTrait = new MockTrait(\file_get_contents($file), $mockName);
$mockTrait->generate();
Expand Down

0 comments on commit be9e477

Please sign in to comment.