We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35733f4 commit 549498aCopy full SHA for 549498a
tests/Control/UserDefinedFormControllerTest.php
@@ -89,7 +89,9 @@ public function testProcess()
89
90
// check to see if the user was redirected (301)
91
$this->assertEquals($response->getStatusCode(), 302);
92
- $this->assertStringEndsWith('finished#uff', $response->getHeader('Location'));
+ $location = $response->getHeader('Location');
93
+ $this->assertContains('finished', $location);
94
+ $this->assertStringEndsWith('#uff', $location);
95
96
// check that multiple email addresses are supported in to and from
97
$this->assertEmailSent(
0 commit comments