Test Failed
Pull Request — master (#5)
by Vladislav
02:16
created
src/tests/MarketData/IndexPriceKlineTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $this->assertNotEmpty($indexPriceKlineData->getBody()->count());
23 23
 
24 24
         /** @var IndexPriceKlineAbstractResponse $klineItem */
25
-        while(!empty($klineItem = $indexPriceKlineData->getBody()->fetch())) {
25
+        while (!empty($klineItem = $indexPriceKlineData->getBody()->fetch())) {
26 26
             $this->assertInstanceOf(IndexPriceKlineAbstractResponse::class, $klineItem);
27 27
             $this->assertInstanceOf(\DateTime::class, $klineItem->getStart());
28 28
             $this->assertIsFloat($klineItem->getOpen());
Please login to merge, or discard this patch.
src/tests/MarketData/FundingRateHistoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $this->assertNotEmpty($fundingRateHistoryData->getBody()->count());
23 23
 
24 24
         /** @var FundingRateHistoryAbstractResponse $historyItem */
25
-        while(!empty($historyItem = $fundingRateHistoryData->getBody()->fetch())) {
25
+        while (!empty($historyItem = $fundingRateHistoryData->getBody()->fetch())) {
26 26
             $this->assertInstanceOf(FundingRateHistoryAbstractResponse::class, $historyItem);
27 27
             $this->assertIsString($historyItem->getSymbol());
28 28
             $this->assertIsFloat($historyItem->getFundingRate());
Please login to merge, or discard this patch.