@@ -114,7 +114,7 @@ func testDefault(platform switchblade.Platform, fixtures string) func(*testing.T
114114 Execute (name , filepath .Join (fixtures , "default" , "unspecified_version" ))
115115 Expect (err ).NotTo (HaveOccurred ())
116116
117- Eventually (logs ).Should (ContainSubstring (`No nginx version specified - using mainline => 1.27 .` ))
117+ Eventually (logs ).Should (ContainSubstring (`No nginx version specified - using mainline => 1.28 .` ))
118118 Eventually (logs ).ShouldNot (ContainSubstring (`Requested nginx version:` ))
119119
120120 Eventually (deployment ).Should (Serve (ContainSubstring ("Exciting Content" )))
@@ -133,7 +133,7 @@ func testDefault(platform switchblade.Platform, fixtures string) func(*testing.T
133133 Execute (name , filepath .Join (fixtures , "default" , "mainline" ))
134134 Expect (err ).NotTo (HaveOccurred ())
135135
136- Eventually (logs ).Should (ContainSubstring (`Requested nginx version: mainline => 1.27 .` ))
136+ Eventually (logs ).Should (ContainSubstring (`Requested nginx version: mainline => 1.28 .` ))
137137
138138 Eventually (deployment ).Should (Serve (ContainSubstring ("Exciting Content" )))
139139
@@ -151,7 +151,7 @@ func testDefault(platform switchblade.Platform, fixtures string) func(*testing.T
151151 Execute (name , filepath .Join (fixtures , "default" , "stable" ))
152152 Expect (err ).NotTo (HaveOccurred ())
153153
154- Eventually (logs ).Should (ContainSubstring (`Requested nginx version: stable => 1.26 .` ))
154+ Eventually (logs ).Should (ContainSubstring (`Requested nginx version: stable => 1.29 .` ))
155155 Eventually (logs ).Should (ContainSubstring (`Warning: usage of "stable" versions of NGINX is discouraged in most cases by the NGINX team.` ))
156156
157157 Eventually (deployment ).Should (Serve (ContainSubstring ("Exciting Content" )))
@@ -170,7 +170,7 @@ func testDefault(platform switchblade.Platform, fixtures string) func(*testing.T
170170 Execute (name , filepath .Join (fixtures , "default" , "unavailable_version" ))
171171 Expect (err ).To (HaveOccurred ())
172172
173- Eventually (logs ).Should (ContainSubstring (`Available versions: mainline, stable, 1.26 .x, 1.27 .x` ))
173+ Eventually (logs ).Should (ContainSubstring (`Available versions: mainline, stable, 1.28 .x, 1.29 .x` ))
174174 })
175175 })
176176
0 commit comments