Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 29dea6e

Browse files
authored
Merge pull request #72 from ekino/fix-panther-usage
fix(tests): fix tests and CI
2 parents 9758cfe + d322a85 commit 29dea6e

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"phpunit/phpunit": "^7.5",
5959
"symfony/browser-kit": "^3.4 || ^4.0",
6060
"symfony/finder": "^3.4 || ^4.0",
61-
"symfony/panther": "1.0.x-dev",
61+
"symfony/panther": "dev-master#f76f91e94c1f29117963d8625f47462a930a03e2",
6262
"symfony/process": "^3.4.2 || ^4.0.2"
6363
},
6464
"extra": {

tests/Integration/Action/DisplayPrettyExceptions/DisplayPrettyExceptionsActionTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ protected function doTestTargetedBehaviorWithDebugKernel(Client $client): void
3838
{
3939
$text = $client->request('GET', '/')->text();
4040

41-
$this->assertContains('Whoops, looks like something went wrong.', $text);
4241
$this->assertContains('This is an useless exception message.', $text);
4342
$this->assertThat($text, $this->logicalOr(
4443
$this->stringContains('in throw_uncaught_exception.module line 5', false),

tests/Integration/Action/DisplayPrettyExceptionsASAP/DisplayPrettyExceptionsASAPActionTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ protected function doTestInitialBehaviorWithDrupalKernel(Client $client): void
8383
protected function doTestTargetedBehaviorWithDebugKernel(Client $client): void
8484
{
8585
$text = $client->request('GET', '/')->text();
86-
$this->assertContains('Whoops, looks like something went wrong.', $text);
8786
$this->assertContains('My custom exception message is great!', $text);
8887
$this->assertThat($text, $this->logicalOr(
8988
$this->stringContains('in throw_uncaught_exception.module line 5', false),

0 commit comments

Comments
 (0)