From 3c4f310e4004d281910336f84246d762a342f147 Mon Sep 17 00:00:00 2001 From: Paul Robert Lloyd Date: Wed, 8 Jun 2022 22:55:30 +0100 Subject: [PATCH] Fix failing TagHelper spec --- spec/helpers/tag_helper_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/helpers/tag_helper_spec.rb b/spec/helpers/tag_helper_spec.rb index bbdaeb8be..dd7ad664d 100644 --- a/spec/helpers/tag_helper_spec.rb +++ b/spec/helpers/tag_helper_spec.rb @@ -10,7 +10,7 @@ RSpec.describe TagHelper do end it "returns tag with correct status text and colour and custom class" do - expect(status_tag("not_started", "app-tag--small")).to eq("Not started") + expect(status_tag("not_started", "app-tag--small")).to eq("Not started") end end end