From d59a3887beba883f6f3c2e93991df25fa37e86b2 Mon Sep 17 00:00:00 2001 From: Gregory Petrosyan Date: Wed, 5 Jul 2023 01:14:16 +0300 Subject: [PATCH] Better error message about no valid actions --- statemachine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statemachine.go b/statemachine.go index 395496f..40069d2 100644 --- a/statemachine.go +++ b/statemachine.go @@ -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).