@@ -202,42 +202,42 @@ describe("ttlShutdownAt", () => {
202
202
[
203
203
"One hour --> helper text shows shutdown after 1 hour" ,
204
204
1 ,
205
- `Your workspace will shut down 1 hour after its next start. We delay shutdown bythis time whenever we detect activity.` ,
205
+ `Your workspace will shut down 1 hour after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
206
206
] ,
207
207
[
208
208
"Two hours --> helper text shows shutdown after 2 hours" ,
209
209
2 ,
210
- `Your workspace will shut down 2 hours after its next start. We delay shutdown bythis time whenever we detect activity.` ,
210
+ `Your workspace will shut down 2 hours after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
211
211
] ,
212
212
[
213
213
"24 hours --> helper text shows shutdown after 1 day" ,
214
214
24 ,
215
- `Your workspace will shut down 1 day after its next start. We delay shutdown bythis time whenever we detect activity.` ,
215
+ `Your workspace will shut down 1 day after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
216
216
] ,
217
217
[
218
218
"48 hours --> helper text shows shutdown after 2 days" ,
219
219
48 ,
220
- `Your workspace will shut down 2 days after its next start. We delay shutdown bythis time whenever we detect activity.` ,
220
+ `Your workspace will shut down 2 days after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
221
221
] ,
222
222
[
223
223
"1.2 hours --> helper text shows shutdown after 1 hour and 12 minutes" ,
224
224
1.2 ,
225
- `Your workspace will shut down 1 hour and 12 minutes after its next start. We delay shutdown bythis time whenever we detect activity.` ,
225
+ `Your workspace will shut down 1 hour and 12 minutes after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
226
226
] ,
227
227
[
228
228
"24.2 hours --> helper text shows shutdown after 1 day and 12 minutes" ,
229
229
24.2 ,
230
- `Your workspace will shut down 1 day and 12 minutes after its next start. We delay shutdown bythis time whenever we detect activity.` ,
230
+ `Your workspace will shut down 1 day and 12 minutes after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
231
231
] ,
232
232
[
233
233
"0.2 hours --> helper text shows shutdown after 12 minutes" ,
234
234
0.2 ,
235
- `Your workspace will shut down 12 minutes after its next start. We delay shutdown bythis time whenever we detect activity.` ,
235
+ `Your workspace will shut down 12 minutes after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
236
236
] ,
237
237
[
238
238
"48.258 hours --> helper text shows shutdown after 2 days and 15 minutes and 28 seconds" ,
239
239
48.258 ,
240
- `Your workspace will shut down 2 days and 15 minutes and 28 seconds after its next start. We delay shutdown bythis time whenever we detect activity.` ,
240
+ `Your workspace will shut down 2 days and 15 minutes and 28 seconds after its next start. We delay shutdown by1 hour whenever we detect activity.` ,
241
241
] ,
242
242
] ) ( "%p" , ( _ , ttlHours , expected ) => {
243
243
expect ( ttlShutdownAt ( ttlHours ) ) . toEqual ( expected ) ;