Skip to content

Commit 040c23d

Browse files
committed
Fix Integration test.
1 parent b4f98d6 commit 040c23d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/Customer/Block/Form/RegisterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ public function testCityWithStoreLabel(): void
150150
->setShowAddressFields(true);
151151
$this->setAttributeDataProvider($block);
152152

153-
$this->assertNotContains('title="City"', $block->toHtml());
154-
$this->assertContains('title="Suburb"', $block->toHtml());
153+
$this->assertStringNotContainsString('title="City"', $block->toHtml());
154+
$this->assertStringContainsString('title="Suburb"', $block->toHtml());
155155
}
156156

157157
/**

0 commit comments

Comments
 (0)