Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Mar 26, 2021
1 parent ea36d99 commit bc1ca82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Runtime/LambdaRuntimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected function tearDown(): void

public function testFromEnvironmentVariable()
{
$getTimeout = function($runtime) {
$getTimeout = function ($runtime) {
$reflectionProp = (new \ReflectionObject($runtime))->getProperty('timeout');
$reflectionProp->setAccessible(true);

Expand All @@ -66,7 +66,7 @@ public function testFromEnvironmentVariable()
$this->assertEquals(0, $getTimeout(LambdaRuntime::fromEnvironmentVariable(0)));
$this->assertEquals(10, $getTimeout(LambdaRuntime::fromEnvironmentVariable(10)));
}

public function test basic behavior()
{
$this->givenAnEvent(['Hello' => 'world!']);
Expand Down

0 comments on commit bc1ca82

Please sign in to comment.