@@ -556,7 +556,7 @@ var _ = Describe("Deployment", func() {
556556 timestamp := time .Date (2026 , 1 , 1 , 0 , 0 , 0 , 0 , time .UTC )
557557 recreateOpts .VMsCreatedBefore = timestamp
558558
559- query := fmt .Sprintf ("state=%s&recreate_vm_created_before =%s" , state , url .QueryEscape (timestamp .Format (time .RFC3339 )))
559+ query := fmt .Sprintf ("state=%s&recreate_vms_created_before =%s" , state , url .QueryEscape (timestamp .Format (time .RFC3339 )))
560560
561561 ConfigureTaskResult (
562562 ghttp .CombineHandlers (
@@ -989,11 +989,11 @@ var _ = Describe("Deployment", func() {
989989 Expect (err ).ToNot (HaveOccurred ())
990990 })
991991
992- It ("succeeds updating deployment with recreate_vm_created_before flag" , func () {
992+ It ("succeeds updating deployment with recreate_vms_created_before flag" , func () {
993993 timestamp := time .Date (2026 , 1 , 1 , 0 , 0 , 0 , 0 , time .UTC )
994994 ConfigureTaskResult (
995995 ghttp .CombineHandlers (
996- ghttp .VerifyRequest ("POST" , "/deployments" , "recreate=true&recreate_vm_created_before =" + url .QueryEscape (timestamp .Format (time .RFC3339 ))),
996+ ghttp .VerifyRequest ("POST" , "/deployments" , "recreate=true&recreate_vms_created_before =" + url .QueryEscape (timestamp .Format (time .RFC3339 ))),
997997 ghttp .VerifyBasicAuth ("username" , "password" ),
998998 ghttp .VerifyHeader (http.Header {
999999 "Content-Type" : []string {"text/yaml" },
0 commit comments