Skip to content

Commit

Permalink
Fix Stan
Browse files Browse the repository at this point in the history
  • Loading branch information
Miraeld committed Nov 14, 2024
1 parent 44f7d03 commit 64ee2bc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ class TestRewriteFonts extends FilesystemTestCase {
private $context;
private $controller;

protected $filesystem;
protected $file_system;

public function set_up() {
parent::set_up();

Functions\when( 'get_current_blog_id' )->justReturn( 1 );

$this->context = Mockery::mock( Context::class );
$this->filesystem = Mockery::mock( WP_Filesystem_Direct::class );
$this->controller = new Controller( $this->context, $this->filesystem );
$this->file_system = Mockery::mock( WP_Filesystem_Direct::class );
$this->controller = new Controller( $this->context, $this->file_system );

$this->stubWpParseUrl();
}
Expand Down

0 comments on commit 64ee2bc

Please sign in to comment.