1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

fix typo in test

This commit is contained in:
Jeff Levin 2020-04-19 22:22:44 -08:00
parent e552e6ce65
commit 3645f75bfc

View file

@ -308,7 +308,7 @@ class TestConfigEnvVariables < TestConfigFileBase
assert_equal 7, conf.options.default_options[:max_threads]
end
with_env("MAX_THREADS" => "8") do
with_env("PUMA_MAX_THREADS" => "8") do
conf = Puma::Configuration.new
assert_equal 8, conf.options.default_options[:max_threads]
end