From 176a79c0df713437c786454499fcd26cf3004f16 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Wed, 4 Jan 2023 17:35:17 +0100 Subject: [PATCH] Fix bootstrap helper specs --- spec/helpers/bootstrap_helper_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/helpers/bootstrap_helper_spec.rb b/spec/helpers/bootstrap_helper_spec.rb index b415b851..b996f162 100644 --- a/spec/helpers/bootstrap_helper_spec.rb +++ b/spec/helpers/bootstrap_helper_spec.rb @@ -84,7 +84,7 @@ describe BootstrapHelper, :type => :helper do describe "#tooltip" do it 'should return the proper markup' do - expect(tooltip("Example Text", "This is in a tooltip")).to eq("Example Text") + expect(tooltip("Example Text", "This is in a tooltip")).to eq("Example Text") end end @@ -94,7 +94,7 @@ describe BootstrapHelper, :type => :helper do @user = FactoryBot.create(:user) travel 10.minutes - expect(time_tooltip(@user)).to eq("10 minutes") + expect(time_tooltip(@user)).to eq("10 minutes") end end end