From 1b2397147e81cd3ff38e49d3559520f1dfe9cd9d Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Fri, 2 May 2025 15:08:56 -0400 Subject: [PATCH] Update flash notice in test --- test/controllers/subscriptions_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/controllers/subscriptions_controller_test.rb b/test/controllers/subscriptions_controller_test.rb index b27d23cb..abd7473f 100644 --- a/test/controllers/subscriptions_controller_test.rb +++ b/test/controllers/subscriptions_controller_test.rb @@ -14,7 +14,7 @@ class SubscriptionsControllerTest < ActionDispatch::IntegrationTest post start_trial_subscription_path assert_redirected_to root_path - assert_equal "Your trial has started", flash[:notice] + assert_equal "Welcome to Maybe!", flash[:notice] assert @user.reload.onboarded? assert @user.family.reload.trial_started_at.present?