Skip to content

Commit

Permalink
Merge b0a1ebb into 79f4706
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Dec 11, 2021
2 parents 79f4706 + b0a1ebb commit d5557d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Workflow/State.pm
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ sub _assign_next_state_from_array {
my @errors = ();
my %new_resulting = ();
foreach my $map ( @{$resulting} ) {
if ( !$map->{state} or !defined $map->{return} ) {
if ( not $map->{state} or not defined $map->{return} ) {
push @errors,
"Must have both 'state' ($map->{state}) and 'return' "
. "($map->{return}) keys defined.";
Expand Down

0 comments on commit d5557d1

Please sign in to comment.