From a901658a5f9a257d6c903c3e9e34dc6388914f98 Mon Sep 17 00:00:00 2001 From: Jayash Satolia Date: Mon, 13 Jan 2025 19:44:48 +0530 Subject: [PATCH] Fix restricted blobber tests --- tests/cli_tests/zboxcli_restricted_blobber_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli_tests/zboxcli_restricted_blobber_test.go b/tests/cli_tests/zboxcli_restricted_blobber_test.go index 57b0bc852b..ed325c747f 100644 --- a/tests/cli_tests/zboxcli_restricted_blobber_test.go +++ b/tests/cli_tests/zboxcli_restricted_blobber_test.go @@ -84,7 +84,7 @@ func TestRestrictedBlobbers(testSetup *testing.T) { // Setup wallet and create allocation _ = setupWallet(t, configPath) - options := map[string]interface{}{"size": "1024", "data": "3", "parity": "3", "lock": "0.5", "force": "true"} + options := map[string]interface{}{"size": "1024", "data": "3", "parity": "3", "lock": "0.5", "force": "true", "auth_round_expiry": 1000000000000000} output, err = createNewAllocationWithoutRetry(t, configPath, createParams(options)) require.NotNil(t, err) require.True(t, len(output) > 0, "expected output length be at least 1", strings.Join(output, "\n"))