@@ -110,7 +110,8 @@ public function assertEvents($deployed = true, $activated = true)
110110 Event::assertNotDispatched (AfterFunctionsActivated::class);
111111 }
112112 }
113- public function test_it_deploys_a_function_that_doesnt_exist ()
113+
114+ public function test_it_deploys_a_function_that_doesnt_exist ()
114115 {
115116 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
116117 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -120,7 +121,8 @@ public function test_it_deploys_a_function_that_doesnt_exist()
120121
121122 $ this ->assertEvents ($ deployed = true , $ activated = false );
122123 }
123- public function test_it_deploys_a_function_that_doesnt_exist_from_the_deployment_class ()
124+
125+ public function test_it_deploys_a_function_that_doesnt_exist_from_the_deployment_class ()
124126 {
125127 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
126128 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -130,7 +132,8 @@ public function test_it_deploys_a_function_that_doesnt_exist_from_the_deployment
130132
131133 $ this ->assertEvents ($ deployed = true , $ activated = false );
132134 }
133- public function test_it_deploys_an_array_of_functions ()
135+
136+ public function test_it_deploys_an_array_of_functions ()
134137 {
135138 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
136139 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -140,7 +143,8 @@ public function test_it_deploys_an_array_of_functions()
140143
141144 $ this ->assertEvents ($ deployed = true , $ activated = false );
142145 }
143- public function test_it_deploys_the_functions_in_the_config ()
146+
147+ public function test_it_deploys_the_functions_in_the_config ()
144148 {
145149 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
146150 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -154,7 +158,8 @@ public function test_it_deploys_the_functions_in_the_config()
154158
155159 $ this ->assertEvents ($ deployed = true , $ activated = false );
156160 }
157- public function test_it_deploys_and_activates_a_function_that_doesnt_exist ()
161+
162+ public function test_it_deploys_and_activates_a_function_that_doesnt_exist ()
158163 {
159164 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
160165 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -165,7 +170,8 @@ public function test_it_deploys_and_activates_a_function_that_doesnt_exist()
165170
166171 $ this ->assertEvents ($ deployed = true , $ activated = true );
167172 }
168- public function test_it_updates_an_existing_function ()
173+
174+ public function test_it_updates_an_existing_function ()
169175 {
170176 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
171177 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -177,7 +183,8 @@ public function test_it_updates_an_existing_function()
177183
178184 $ this ->assertEvents ($ deployed = true , $ activated = false );
179185 }
180- public function test_it_updates_and_activates_an_existing_function ()
186+
187+ public function test_it_updates_and_activates_an_existing_function ()
181188 {
182189 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
183190 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -190,7 +197,8 @@ public function test_it_updates_and_activates_an_existing_function()
190197
191198 $ this ->assertEvents ($ deployed = true , $ activated = true );
192199 }
193- public function test_it_sets_environment_variables ()
200+
201+ public function test_it_sets_environment_variables ()
194202 {
195203 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
196204 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -229,7 +237,8 @@ public function test_it_sets_environment_variables()
229237
230238 $ this ->assertEvents ($ deployed = true , $ activated = true );
231239 }
232- public function test_it_doesnt_change_variables_that_havent_changed ()
240+
241+ public function test_it_doesnt_change_variables_that_havent_changed ()
233242 {
234243 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
235244 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -253,7 +262,8 @@ public function test_it_doesnt_change_variables_that_havent_changed()
253262
254263 $ this ->assertEvents ($ deployed = true , $ activated = true );
255264 }
256- public function test_it_sets_function_tags ()
265+
266+ public function test_it_sets_function_tags ()
257267 {
258268 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
259269 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -304,7 +314,8 @@ public function test_it_sets_function_tags()
304314
305315 $ this ->assertEvents ($ deployed = true , $ activated = true );
306316 }
307- public function test_it_throws_an_exception_if_there_are_no_functions ()
317+
318+ public function test_it_throws_an_exception_if_there_are_no_functions ()
308319 {
309320 config ()->set ('sidecar.functions ' , [
310321
0 commit comments