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 b4f98d6 commit 040c23dCopy full SHA for 040c23d
dev/tests/integration/testsuite/Magento/Customer/Block/Form/RegisterTest.php
@@ -150,8 +150,8 @@ public function testCityWithStoreLabel(): void
150
->setShowAddressFields(true);
151
$this->setAttributeDataProvider($block);
152
153
- $this->assertNotContains('title="City"', $block->toHtml());
154
- $this->assertContains('title="Suburb"', $block->toHtml());
+ $this->assertStringNotContainsString('title="City"', $block->toHtml());
+ $this->assertStringContainsString('title="Suburb"', $block->toHtml());
155
}
156
157
/**
0 commit comments