Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayn93 committed Nov 6, 2023
1 parent 6754dee commit 9cb5b12
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog
## Unreleased
### Add
- Add campaigns to category view page
- Improve logging system

## [v4.2.1] - 2023.09.25
### Fix
- Fix problem with ssr/record-list.phtml template

## [v4.2.0] - 2023.09.18
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
use Omikron\FactFinder\Communication\Client\ClientBuilder;
use Omikron\FactFinder\Communication\Client\ClientInterface;
use Omikron\FactFinder\Communication\Credentials;
use Omikron\Factfinder\Logger\FactFinderLogger;
use Omikron\Factfinder\Model\Api\CredentialsFactory;
use Omikron\Factfinder\Model\Config\AuthConfig;
use PHPUnit\Framework\MockObject\MockObject;
Expand Down Expand Up @@ -63,7 +64,8 @@ protected function setUp(): void
$this->createConfiguredMock(JsonFactory::class, ['create' => $this->createMock(JsonResult::class)]),
$credentialsFactory,
$this->createMock(AuthConfig::class),
$this->builderMock
$this->builderMock,
$this->createMock(FactFinderLogger::class)
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Magento\Framework\App\RequestInterface;
use Magento\Framework\Controller\Result\Json as JsonResult;
use Magento\Framework\Controller\Result\JsonFactory;
use Omikron\Factfinder\Logger\FactFinderLogger;
use Omikron\Factfinder\Model\Config\FtpConfig;
use Omikron\Factfinder\Model\FtpUploader;
use PHPUnit\Framework\MockObject\MockObject;
Expand Down Expand Up @@ -77,7 +78,8 @@ protected function setUp(): void
$this->createConfiguredMock(Context::class, ['getRequest' => $this->request]),
$this->createConfiguredMock(JsonFactory::class, ['create' => $this->jsonResult]),
$this->ftpUploader,
$this->createMock(FtpConfig::class)
$this->createMock(FtpConfig::class),
$this->createMock(FactFinderLogger::class)
);
}
}

0 comments on commit 9cb5b12

Please sign in to comment.