Skip to content

Commit

Permalink
Better error message about no valid actions
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingmutant committed Jul 4, 2023
1 parent 86ebb4c commit d59a388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statemachine.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const (
actionLabel = "action"
validActionTries = 100 // hack, but probably good enough for now
checkMethodName = "Check"
noValidActionsMsg = "can't find a valid action"
noValidActionsMsg = "can't find a valid (non-skipped) action"
)

// Repeat executes a random sequence of actions (often called a "state machine" test).
Expand Down

0 comments on commit d59a388

Please sign in to comment.