Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 08d5d54

Browse files
committed
Use PHPUnit_Framework_Assert instead of TestCase
1 parent d567534 commit 08d5d54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Test/EventListenerIntrospectionTrait.php

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

1010
namespace Zend\EventManager\Test;
1111

12-
use PHPUnit_Framework_TestCase as TestCase;
12+
use PHPUnit_Framework_Assert as Assert;
1313
use ReflectionProperty;
1414
use Zend\EventManager\EventManager;
1515

@@ -103,7 +103,7 @@ private function assertListenerAtPriority(
103103
break;
104104
}
105105
}
106-
TestCase::assertTrue($found, $message);
106+
Assert::assertTrue($found, $message);
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)