Skip to content

Commit

Permalink
MNT Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Dec 2, 2024
1 parent ffd5a03 commit c8fa66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/php/Dev/BacktraceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public static function matchesFilterableClassProvider(): array
#[DataProvider('matchesFilterableClassProvider')]
public function testMatchesFilterableClass(string $className, string $filterableClass, bool $expected, string $message): void
{
$reflectionMethod = new ReflectionMethod(Backtrace::class . '::matchesFilterableClass');
$reflectionMethod = new ReflectionMethod(Backtrace::class, 'matchesFilterableClass');
$reflectionMethod->setAccessible(true);
$this->assertSame($expected, $reflectionMethod->invoke(null, $className, $filterableClass), $message);
}
Expand Down

0 comments on commit c8fa66f

Please sign in to comment.