We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3ba96 commit 443610aCopy full SHA for 443610a
tests/LaravelLocalizationTest.php
@@ -884,15 +884,15 @@ public function testRedirectWithHiddenDefaultLocaleInUrlAndSavedLocale()
884
885
$crawler = $this->call(
886
'GET',
887
- $this->test_url,
+ self::$testUrl,
888
[],
889
['locale' => $savedLocale],
890
891
[]
892
);
893
894
$this->assertResponseStatus(302);
895
- $this->assertRedirectedTo($this->test_url . $savedLocale);
+ $this->assertRedirectedTo(self::$testUrl . $savedLocale);
896
897
$localeCookie = $crawler->headers->getCookies()[0];
898
$this->assertEquals($savedLocale, $localeCookie->getValue());
0 commit comments