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 f641a98 commit cf9e61fCopy full SHA for cf9e61f
dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/SearchTest.php
@@ -60,6 +60,7 @@ public function testExecuteNotVisibleIndividuallyProducts() : void
60
$responseBody = $this->getResponse()->getBody();
61
$jsonResponse = json_decode($responseBody);
62
$this->assertEquals(1, $jsonResponse['total']);
63
+ $this->assertCount(1, $jsonResponse['options']);
64
}
65
66
/**
@@ -75,5 +76,6 @@ public function testExecuteEnabledAndDisabledProducts() : void
75
76
77
78
$this->assertEquals(7, $jsonResponse['total']);
79
+ $this->assertCount(7, $jsonResponse['options']);
80
81
0 commit comments