From 11d74b577067f2aa3497bfa1774871618edfaa0b Mon Sep 17 00:00:00 2001 From: Roman <34196718+p0mvn@users.noreply.github.com> Date: Sun, 27 Mar 2022 13:37:40 -0700 Subject: [PATCH] increase setupBaseAppWithSnapshots timeout to 90 seconds (#160) --- baseapp/baseapp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseapp/baseapp_test.go b/baseapp/baseapp_test.go index ab6eebd91093..811a6868f080 100644 --- a/baseapp/baseapp_test.go +++ b/baseapp/baseapp_test.go @@ -141,7 +141,7 @@ func setupBaseAppWithSnapshots(t *testing.T, config *setupConfig) (*BaseApp, fun })) } - snapshotTimeout := 1 * time.Minute + snapshotTimeout := 90 * time.Second snapshotDir, err := ioutil.TempDir("", "baseapp") require.NoError(t, err) snapshotStore, err := snapshots.NewStore(dbm.NewMemDB(), snapshotDir)