Skip to content

Commit f5d5360

Browse files
committed
MQE-1766
1 parent 908c2e3 commit f5d5360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public function seeInCurrentUrl($needle)
340340
$actualUrl = $this->webDriver->getCurrentURL();
341341
$comparison = "Expected: $needle\nActual: $actualUrl";
342342
AllureHelper::addAttachmentToCurrentStep($comparison, 'Comparison');
343-
$this->assertStringContainsString($needle, urldecode($actualUrl));
343+
$this->assertStringContainsString(urldecode($needle), urldecode($actualUrl));
344344
}
345345

346346
/**

0 commit comments

Comments
 (0)