Skip to content

Commit

Permalink
Update run-tests.yml
Browse files Browse the repository at this point in the history
Update ReportTest.php

Update ReportTest.php

Update ReportTest.php

Update ReportTest.php

Fix filename check
  • Loading branch information
riasvdv committed Dec 2, 2024
1 parent 803f09d commit 8322899
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [8.3, 8.2, 8.1, 8.0]
php: [8.4, 8.3, 8.2, 8.1, 8.0]
dependency-version: [prefer-lowest, prefer-stable]
os: [ubuntu-latest]

Expand Down
4 changes: 2 additions & 2 deletions tests/ReportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
->toArray()
['stacktrace'];

expect($stacktrace[0]['file'])->toBe(__FILE__);
expect($stacktrace[0]['file'])->toContain('ReportTest.php');
expect($stacktrace[0]['arguments'])->toBeNull();
expect($stacktrace[0]['method'])->toBe(__METHOD__);
expect($stacktrace[0]['method'])->toContain('closure');
});

$test->doSomething; // We expect this to fail!
Expand Down

0 comments on commit 8322899

Please sign in to comment.