Skip to content

Commit bc1ca82

Browse files
committed
cs
1 parent ea36d99 commit bc1ca82

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Runtime/LambdaRuntimeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function tearDown(): void
4646

4747
public function testFromEnvironmentVariable()
4848
{
49-
$getTimeout = function($runtime) {
49+
$getTimeout = function ($runtime) {
5050
$reflectionProp = (new \ReflectionObject($runtime))->getProperty('timeout');
5151
$reflectionProp->setAccessible(true);
5252

@@ -66,7 +66,7 @@ public function testFromEnvironmentVariable()
6666
$this->assertEquals(0, $getTimeout(LambdaRuntime::fromEnvironmentVariable(0)));
6767
$this->assertEquals(10, $getTimeout(LambdaRuntime::fromEnvironmentVariable(10)));
6868
}
69-
69+
7070
public function test basic behavior()
7171
{
7272
$this->givenAnEvent(['Hello' => 'world!']);

0 commit comments

Comments
 (0)