Skip to content

Commit

Permalink
Fix failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
cnizzardini committed Aug 9, 2020
1 parent ace4207 commit be601a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Glob/GlobClassExplorerTest.php
Expand Up @@ -13,8 +13,8 @@ public function testGetClasses()
{
$explorer = new GlobClassExplorer('\\TheCodingMachine\\ClassExplorer\\', new NullCache(), null, null, true, __DIR__.'/../..');
$classes = $explorer->getClasses();

$this->assertSame([GlobClassExplorer::class, ClassExplorerInterface::class], $classes);
$this->assertTrue(in_array(GlobClassExplorer::class, $classes));
$this->assertTrue(in_array(ClassExplorerInterface::class, $classes));
}

public function testGetClassesNonRecursive()
Expand Down

0 comments on commit be601a4

Please sign in to comment.