diff --git a/Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php b/Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php index 2e0c218..c45f753 100644 --- a/Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php +++ b/Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php @@ -49,14 +49,24 @@ public function testStoreCodeIsShownInNonDefaultStoreUrl(): void public function testStoreCodeIsNotShownInNonDefaultStoreUrl(): void { $store = $this->storeRepository->get('test'); - $this->config->setValue(Store::XML_PATH_STORE_IN_URL, false, ScopeInterface::SCOPE_STORE, $store->getCode()); + $this->config->setValue( + Store::XML_PATH_STORE_IN_URL, + false, + ScopeInterface::SCOPE_STORE, + $store->getCode() + ); $this->assertStringNotContainsString('test', $store->getBaseUrl()); } public function testStoreCodeIsNotShownInDefaultStoreUrl(): void { $store = $this->storeRepository->get('default'); - $this->config->setValue(Store::XML_PATH_STORE_IN_URL, false, ScopeInterface::SCOPE_STORE, $store->getCode()); + $this->config->setValue( + Store::XML_PATH_STORE_IN_URL, + false, + ScopeInterface::SCOPE_STORE, + $store->getCode() + ); $this->assertStringNotContainsString('default', $store->getBaseUrl()); }