diff --git a/test/features/console_helpers.rb b/test/features/console_helpers.rb index 1e7be3f..4f59502 100644 --- a/test/features/console_helpers.rb +++ b/test/features/console_helpers.rb @@ -19,8 +19,7 @@ def spawn_console(options, wait_for_prompt: true, env: {}) "TERM" => "dumb", "HOME" => home_tmp_dir, "APP_ENV" => nil, - "RAILS_ENV" => nil, - "SECRET_KEY_BASE_DUMMY" => "1" + "RAILS_ENV" => nil ) pid = Process.spawn( diff --git a/test/features/runner_helpers.rb b/test/features/runner_helpers.rb index ece7650..2d14208 100644 --- a/test/features/runner_helpers.rb +++ b/test/features/runner_helpers.rb @@ -2,7 +2,7 @@ module RunnerHelpers private def assert_runner_puts(expected, subject, env: {}) - env = env.with_defaults({"APP_ENV" => nil, "RAILS_ENV" => nil, "SECRET_KEY_BASE_DUMMY" => "1"}) + env = env.with_defaults({"APP_ENV" => nil, "RAILS_ENV" => nil}) stdout, status = Open3.capture2(env, "#{DUMMY_ROOT}/bin/rails", "runner", "puts #{subject}")