From 791eab6c470d32952d1b9de8925baa75f2581a79 Mon Sep 17 00:00:00 2001 From: merefield Date: Wed, 27 Oct 2021 14:02:21 +0100 Subject: [PATCH] Fix action spec example --- spec/components/custom_wizard/action_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/components/custom_wizard/action_spec.rb b/spec/components/custom_wizard/action_spec.rb index 94192aa7..0c677300 100644 --- a/spec/components/custom_wizard/action_spec.rb +++ b/spec/components/custom_wizard/action_spec.rb @@ -312,7 +312,7 @@ describe CustomWizard::Action do log_entry = CustomWizard::Api::LogEntry.list("my_api").first expect(result).to eq({ error: "API request failed" }) - expect(log_entry.status).to eq('FAILURE') + expect(log_entry.status).to eq('FAIL') end end end