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 502adac commit c345176Copy full SHA for c345176
dev/tests/unit/testsuite/Magento/Framework/App/ProductMetadataTest.php
@@ -12,11 +12,6 @@ class ProductMetadataTest extends \PHPUnit_Framework_TestCase
12
*/
13
protected $productMetadata;
14
15
- /**
16
- * @var array
17
- */
18
- protected $productEdition = array('Community', 'Enterprise');
19
-
20
protected function setUp()
21
{
22
$this->productMetadata = new ProductMetadata();
@@ -35,6 +30,5 @@ public function testGetEdition()
35
30
36
31
$productEdition = $this->productMetadata->getEdition();
37
32
$this->assertNotEmpty($productEdition, 'Empty product edition');
38
- $this->assertContains($productEdition, $this->productEdition, 'Invalid product edition');
39
33
}
40
34
0 commit comments