ftx: set TestGetPublicOptionsTrades start date one week from current date to allow for more trade volume (#857)

This commit is contained in:
Adrian Gallagher
2021-12-14 12:31:26 +11:00
committed by GitHub
parent feb05f1f9a
commit 9a1fd796d0

View File

@@ -971,7 +971,7 @@ func TestGetPublicOptionsTrades(t *testing.T) {
}
tmNow := time.Now()
result, err = f.GetPublicOptionsTrades(context.Background(),
tmNow.AddDate(0, 0, -1), tmNow, "5")
tmNow.AddDate(0, 0, -7), tmNow, "5")
if err != nil {
t.Error(err)
}