From 9f6d96a12c50b887b1772d863b1262485ff2cf82 Mon Sep 17 00:00:00 2001 From: "has.well" Date: Sat, 14 Nov 2020 15:18:25 +0200 Subject: [PATCH] fix reverse test sum --- lib/Configuration.php | 2 +- tests/OrderTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Configuration.php b/lib/Configuration.php index 3bcb3ae..750f42f 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -133,7 +133,7 @@ public static function setApiUrl($ApiUrl) } /** - * @return ClientInterface Http Client + * @return string */ public static function getHttpClient() { diff --git a/tests/OrderTest.php b/tests/OrderTest.php index 70acb18..54d3a97 100644 --- a/tests/OrderTest.php +++ b/tests/OrderTest.php @@ -81,7 +81,7 @@ public function testReverse() $this->setTestConfig(); $reverseData = [ 'currency' => 'USD', - 'amount' => 10, + 'amount' => 1000, 'order_id' => $this->orderID['order_id'] ]; $data = \Cloudipsp\Order::reverse($reverseData);