From 3007dcce9b491c8a014d290b5191e73b1760c11a Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 6 Nov 2020 23:47:19 +0900 Subject: [PATCH] Remove test cases for HitBTC pricenode data provider class --- .../bisq/price/spot/providers/HitbtcTest.java | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 pricenode/src/test/java/bisq/price/spot/providers/HitbtcTest.java diff --git a/pricenode/src/test/java/bisq/price/spot/providers/HitbtcTest.java b/pricenode/src/test/java/bisq/price/spot/providers/HitbtcTest.java deleted file mode 100644 index 0d70e42722..0000000000 --- a/pricenode/src/test/java/bisq/price/spot/providers/HitbtcTest.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * This file is part of Bisq. - * - * Bisq is free software: you can redistribute it and/or modify it - * under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at - * your option) any later version. - * - * Bisq is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public - * License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Bisq. If not, see . - */ - -package bisq.price.spot.providers; - -import bisq.price.AbstractExchangeRateProviderTest; - -import lombok.extern.slf4j.Slf4j; - -import org.junit.jupiter.api.Test; - -@Slf4j -public class HitbtcTest extends AbstractExchangeRateProviderTest { - - @Test - public void doGet_successfulCall() { - doGet_successfulCall(new Hitbtc()); - } - -}