Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rodber committed Apr 20, 2024
1 parent 705cd68 commit b0d656a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 43 deletions.
37 changes: 0 additions & 37 deletions src/Actions/ClosureAction.php

This file was deleted.

10 changes: 4 additions & 6 deletions tests/RunTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
use Chevere\Tests\src\TestActionNoParams;
use Chevere\Tests\src\TestActionParam;
use Chevere\Tests\src\TestActionParams;
use Chevere\Workflow\Jobs;
use Chevere\Workflow\Run;
use Chevere\Workflow\Workflow;
use OutOfBoundsException;
use OverflowException;
use PHPUnit\Framework\TestCase;
Expand All @@ -32,7 +30,7 @@ final class RunTest extends TestCase
{
public function testConstruct(): void
{
$workflow = (new Workflow(new Jobs()))
$workflow = workflow()
->withAddedJob(
job: async(
new TestActionParam(),
Expand All @@ -55,7 +53,7 @@ public function testConstruct(): void

public function testWithStepResponse(): void
{
$workflow = (new Workflow(new Jobs()))
$workflow = workflow()
->withAddedJob(
job0: async(
new TestActionParam(),
Expand All @@ -80,7 +78,7 @@ public function testWithStepResponse(): void

public function testWithAddedNotFound(): void
{
$workflow = (new Workflow(new Jobs()))
$workflow = workflow()
->withAddedJob(
job0: async(
new TestActionParam(),
Expand All @@ -100,7 +98,7 @@ public function testWithAddedNotFound(): void

public function testWithAddedMissingArguments(): void
{
$workflow = (new Workflow(new Jobs()))
$workflow = workflow()
->withAddedJob(
job0: async(
new TestActionNoParams()
Expand Down

0 comments on commit b0d656a

Please sign in to comment.