From 444acaf5489b16525e73ac2cc35846f5630a84e0 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 10 Mar 2024 15:30:27 +0100 Subject: [PATCH] Adjust BootstrapHelper 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 3f10d733..02e98f65 100644 --- a/spec/helpers/bootstrap_helper_spec.rb +++ b/spec/helpers/bootstrap_helper_spec.rb @@ -93,7 +93,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 @@ -103,7 +103,7 @@ describe BootstrapHelper, type: :helper do @user = FactoryBot.create(:user) travel 10.minutes - expect(time_tooltip(@user)).to eq("10m") + expect(time_tooltip(@user)).to eq("10m") end end end