We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3237884 commit 3fa3f1dCopy full SHA for 3fa3f1d
1 file changed
internal/cmd/beta/sfs/snapshot/create/create_test.go
@@ -2,6 +2,7 @@ package create
2
3
import (
4
"context"
5
+ "strconv"
6
"testing"
7
8
"github.com/google/go-cmp/cmp"
@@ -39,7 +40,7 @@ func fixtureFlagValues(mods ...func(flagValues map[string]string)) map[string]st
39
40
nameFlag: testName,
41
resourcePoolIdFlag: testResourcePoolId,
42
commentFlag: testComment,
- snaplockRetentionHoursFlag: "24",
43
+ snaplockRetentionHoursFlag: strconv.Itoa(int(testSnaplockRetentionHours)),
44
}
45
for _, mod := range mods {
46
mod(flagValues)
0 commit comments