Skip to content

Commit d66133d

Browse files
Tweaks to step functions docs and tests (#1052)
1 parent 836eed2 commit d66133d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Integration/StepFunctionsClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function testStartExecution(): void
2121
'input' => 'change me',
2222
'traceHeader' => 'change me',
2323
]);
24-
$result = $client->StartExecution($input);
24+
$result = $client->startExecution($input);
2525

2626
$result->resolve();
2727

tests/Unit/StepFunctionsClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function testStartExecution(): void
2020
'name' => 'qwertyuiop',
2121
'input' => '{"foo": "bar"}',
2222
]);
23-
$result = $client->StartExecution($input);
23+
$result = $client->startExecution($input);
2424

2525
self::assertInstanceOf(StartExecutionOutput::class, $result);
2626
self::assertFalse($result->info()['resolved']);

0 commit comments

Comments
 (0)