Skip to content

Commit 42f1a99

Browse files
Fix call to retry function
1 parent 11301f2 commit 42f1a99

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

systest/backup/nfs-backup/backup_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ func backupRestoreTest(t *testing.T, backupAlphaName string, backupZeroName stri
7272

7373
// Wait for gRPC connection to be ready with retries
7474
t.Log("Waiting for gRPC connection to be ready...")
75-
testutil.RetryQuery(t, dg, `{ health { status } }`)
75+
_, err = testutil.RetryQuery(dg, `{ health { status } }`)
76+
require.NoError(t, err)
7677

7778
require.NoError(t, dg.Alter(ctx, &api.Operation{DropAll: true}))
7879
// Add schema and types.

0 commit comments

Comments
 (0)