From 279afd99c64457fef88a08a3b7a7292bceaad920 Mon Sep 17 00:00:00 2001 From: Iryna Lagno <ilagno@magento.com> Date: Mon, 7 Nov 2016 17:45:05 +0200 Subject: [PATCH] MAGETWO-54263: [FT] OnlineRefundTest and CloseOrderTest is failed by syntax error in Magento\Tax\Test\Handler\Curl\RemoveTaxRule.php --- .../tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php index 31ca2396f07..3e69145b42b 100644 --- a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php +++ b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php @@ -39,9 +39,9 @@ class RemoveTaxRule extends Curl public function persist(FixtureInterface $fixture = null) { $this->taxRuleGridUrl = $_ENV['app_backend_url'] . 'tax/rule/index/'; - $curl = $this->_getCurl($this->taxRuleGridUrl); + $curl = $this->getCurl($this->taxRuleGridUrl); $response = $curl->read(); - $this->_removeTaxRules($response); + $this->removeTaxRules($response); $curl->close(); return $response; } -- GitLab