Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions test/unit/instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package unit
import (
"context"
"fmt"
"strconv"
"testing"

"github.com/jarcoal/httpmock"
Expand Down Expand Up @@ -109,6 +110,9 @@ func TestInstance_ResetPassword(t *testing.T) {
}

func TestInstance_Get_MonthlyTransfer(t *testing.T) {
if strconv.IntSize < 64 {
t.Skip("V1 monthly transfer doesn't work on 32 or lower bits system")
}
fixtureData, err := fixtures.GetFixture("instance_monthly_transfer_get")
assert.NoError(t, err)

Expand Down