From 5b11b8e02b1ac4d49c68b48c9527714747c539e3 Mon Sep 17 00:00:00 2001 From: TomashKhamlai Date: Tue, 21 Aug 2018 11:59:41 +0300 Subject: [PATCH] Fix problems reported by testCodeStyle --- .../testsuite/Magento/GraphQl/Cms/CmsPageTest.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev/tests/api-functional/testsuite/Magento/GraphQl/Cms/CmsPageTest.php b/dev/tests/api-functional/testsuite/Magento/GraphQl/Cms/CmsPageTest.php index fa115a8a49bc6..86145fafa62f1 100644 --- a/dev/tests/api-functional/testsuite/Magento/GraphQl/Cms/CmsPageTest.php +++ b/dev/tests/api-functional/testsuite/Magento/GraphQl/Cms/CmsPageTest.php @@ -11,7 +11,6 @@ use Magento\TestFramework\ObjectManager; use Magento\TestFramework\TestCase\GraphQlAbstract; - class CmsPageTest extends GraphQlAbstract { /** @@ -101,7 +100,6 @@ public function testGetCmsPageByNonExistentId() $this->expectException(\Exception::class); $this->expectExceptionMessage('The CMS page with the "0" ID doesn\'t exist.'); $this->graphQlQuery($query); - } /** @@ -132,5 +130,4 @@ public function testGetDisabledCmsPageById() $this->expectExceptionMessage('No such entity.'); $this->graphQlQuery($query); } - }