Skip to content

Commit 697ec91

Browse files
author
Jehannes Stellingwerf
committed
Fix PHPUnit 6 / 7 compatibility of test suite
1 parent 5028323 commit 697ec91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AbstractTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
namespace Embed\Tests;
44

55
use Embed\Embed;
6-
use PHPUnit_Framework_TestCase;
6+
use PHPUnit\Framework\TestCase;
77
use InvalidArgumentException;
88

99
/**
1010
* Base class with custom utilities for testing.
1111
*/
12-
abstract class AbstractTestCase extends PHPUnit_Framework_TestCase
12+
abstract class AbstractTestCase extends TestCase
1313
{
1414
/**
1515
* Compare two string, replacing some conflicting characters

0 commit comments

Comments
 (0)