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

Commit be75ec1

Browse files
committed
Use PHPUnit_Framework_Assert instead of TestCase
1 parent 8f57b25 commit be75ec1

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 Zend\EventManager\EventManager;
1414
use Zend\Stdlib\PriorityQueue;
1515

@@ -96,7 +96,7 @@ private function assertListenerAtPriority(
9696
break;
9797
}
9898
}
99-
TestCase::assertTrue($found, $message);
99+
Assert::assertTrue($found, $message);
100100
}
101101

102102
/**

0 commit comments

Comments
 (0)