diff --git a/tests/PriceTest.php b/tests/PriceTest.php index 379c336..aedbbd1 100644 --- a/tests/PriceTest.php +++ b/tests/PriceTest.php @@ -35,26 +35,6 @@ public function __construct() parent::__construct(); } - public function testUpdate() - { - $client = $this->getClient(); - try { - $update = $client->update([ - 'sku' => '1131270', - 'currency' => 'USD', - 'price' => '55', - ]); - $this->assertEquals(200, $update['statusCode']); - $this->assertEquals('WALMART_US', $update['mart']); - $this->debug($update); - } catch (CommandClientException $e) { - $error = $e->getResponse()->getHeader('X-Error'); - $this->fail($e->getMessage() . 'Error: ' . $error); - } catch (\Exception $e) { - $this->fail($e->getMessage()); - } - } - public function testBulk() { $client = $this->getClient();