Skip to content

Commit 502e8a9

Browse files
committed
Fix PHPUnit namespace for PHP 7 and above
1 parent 85b1345 commit 502e8a9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Tests/HelloWorldTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class HelloWorldTest extends PHPUnit_Framework_TestCase
3+
class HelloWorldTest extends \PHPUnit\Framework\TestCase
44
{
55
/**
66
* @var PDO
@@ -44,4 +44,3 @@ public function testWhat()
4444
$this->assertEquals('Bar', $helloWorld->what());
4545
}
4646
}
47-

0 commit comments

Comments
 (0)