Skip to content

Commit

Permalink
Merge pull request #156 from biigle/patch-1
Browse files Browse the repository at this point in the history
Implement compatibility with new biigle/largo version
  • Loading branch information
mzur authored Jan 30, 2024
2 parents 7a299ba + 52a57ed commit 5497825
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Jobs/ProcessNoveltyDetectedImageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Biigle\Tests\Modules\Maia\Jobs;

use Biigle\Modules\Maia\Jobs\ProcessNoveltyDetectedImage;
use Biigle\Modules\Maia\TrainingProposal;
use Biigle\Modules\Maia\TrainingProposalFeatureVector;
use Biigle\Modules\Maia\Jobs\ProcessNoveltyDetectedImage;
use File;
use Mockery;
use Storage;
Expand Down Expand Up @@ -81,7 +81,7 @@ class ProcessNoveltyDetectedImageStub extends ProcessNoveltyDetectedImage
public $outputPath;
public $output = [];

public function getVipsImage($path)
public function getVipsImage(string $path, array $options = [])
{
return $this->mock;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Jobs/ProcessObjectDetectedImageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class ProcessObjectDetectedImageStub extends ProcessObjectDetectedImage
public $outputPath;
public $output = [];

public function getVipsImage($path)
public function getVipsImage(string $path, array $options = [])
{
return $this->mock;
}
Expand Down

0 comments on commit 5497825

Please sign in to comment.