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

Commit

Permalink
Use PHPUnit_Framework_Assert instead of TestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jan 12, 2016
1 parent d567534 commit 08d5d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Test/EventListenerIntrospectionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Zend\EventManager\Test;

use PHPUnit_Framework_TestCase as TestCase;
use PHPUnit_Framework_Assert as Assert;
use ReflectionProperty;
use Zend\EventManager\EventManager;

Expand Down Expand Up @@ -103,7 +103,7 @@ private function assertListenerAtPriority(
break;
}
}
TestCase::assertTrue($found, $message);
Assert::assertTrue($found, $message);
}

/**
Expand Down

0 comments on commit 08d5d54

Please sign in to comment.