From 2c36d824d6675436eafc19d6cd72d821508ae571 Mon Sep 17 00:00:00 2001 From: Beadko Date: Fri, 22 Dec 2023 14:03:09 +0700 Subject: [PATCH] Bitstamp: Fix the error description --- exchanges/bitstamp/bitstamp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/bitstamp/bitstamp_test.go b/exchanges/bitstamp/bitstamp_test.go index fc4d6bbea11..7c52dc0be4d 100644 --- a/exchanges/bitstamp/bitstamp_test.go +++ b/exchanges/bitstamp/bitstamp_test.go @@ -275,7 +275,7 @@ func TestUpdateOrderExecutionLimits(t *testing.T) { assert.NotEmpty(t, limits.Pair, "Pair should not be empty") assert.Positive(t, limits.PriceStepIncrementSize, "PriceStepIncrementSize should be positive") assert.Positive(t, limits.AmountStepIncrementSize, "AmountStepIncrementSize should be positive") - assert.Positive(t, limits.MinimumQuoteAmount, "MinAmount should be positive") + assert.Positive(t, limits.MinimumQuoteAmount, "MinimumQuoteAmount should be positive") if mockTests { if got := limits.PriceStepIncrementSize; got != limitTest.step { t.Errorf("Bitstamp UpdateOrderExecutionLimits wrong PriceStepIncrementSize; Asset: %s Pair: %s Expected: %v Got: %v", assetItem, limitTest.pair, limitTest.step, got)