We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4621c9 commit 46bbff2Copy full SHA for 46bbff2
1 file changed
internal/cmd/storagebox/describe_test.go
@@ -154,8 +154,8 @@ Storage Box Type:
154
Subaccounts Limit: 200
155
156
Deprecation:
157
- Announced: 2023-06-01 00:00:00 UTC (2 years ago)
158
- Unavailable After: 2023-09-01 00:00:00 UTC (2 years ago)
+ Announced: 2023-06-01 00:00:00 UTC (%s)
+ Unavailable After: 2023-09-01 00:00:00 UTC (%s)
159
160
Location:
161
ID: 42
@@ -166,7 +166,10 @@ Location:
166
City: Falkenstein
167
Latitude: 50.476120
168
Longitude: 12.370071
169
-`, humanize.Time(storageBox.Created))
+`,
170
+ humanize.Time(storageBox.Created),
171
+ humanize.Time(storageBox.StorageBoxType.Deprecation.Announced),
172
+ humanize.Time(storageBox.StorageBoxType.Deprecation.UnavailableAfter))
173
174
require.NoError(t, err)
175
assert.Empty(t, errOut)
0 commit comments