Skip to content

Commit

Permalink
Bitstamp: Fix the error description
Browse files Browse the repository at this point in the history
  • Loading branch information
Beadko committed Dec 22, 2023
1 parent 8a220a8 commit 67dab95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/bitstamp/bitstamp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 67dab95

Please sign in to comment.