Skip to content

Commit

Permalink
FRW-8801 CI Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
olhalivitchuk committed Sep 5, 2024
1 parent 7c9e098 commit 37cee2e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Type/Spryker/DynamicMethodMissingTypeExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ class DynamicMethodMissingTypeExtensionTest extends TestCase
*/
public function testInstance(): void
{
$extension = $this->getMockBuilder(AnnotationsMethodsClassReflectionExtension::class)->disableOriginalConstructor()->getMock();
$cache = $this->getMockBuilder(Cache::class)->disableOriginalConstructor()->getMock();
$instance = new DynamicMethodMissingTypeExtension($extension, $cache, 'test', []);
$instance = new DynamicMethodMissingTypeExtension(new AnnotationsMethodsClassReflectionExtension(), $cache, 'test', []);
$this->assertInstanceOf(DynamicMethodMissingTypeExtension::class, $instance);
}
}

0 comments on commit 37cee2e

Please sign in to comment.