Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
with:
php-version: '8.4'
extensions: intl, sodium, gd, mysqli, curl, fileinfo, json, dom, simplexml, mbstring, zip, redis, memcached, apcu
coverage: pcov
ini-values: apc.enable_cli=1, mysqli.allow_local_infile=1
coverage: xdebug
ini-values: apc.enable_cli=1, mysqli.allow_local_infile=1, xdebug.mode="develop,coverage"
- name: Validate composer.json
run: composer validate --no-check-publish
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion tests/DebuggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public function testColorOption() : void

public function testIconPathOption() : void
{
$iconPath = __DIR__ . '/../guide/image.png';
$iconPath = __DIR__ . '/../src/Views/exceptions/favicons/development.png';
$this->debugger->setOption('icon_path', $iconPath);
self::assertStringContainsString(
\base64_encode((string) \file_get_contents($iconPath)),
Expand Down
Loading