From a3f58307283223b9a32726ff92a504eed3067843 Mon Sep 17 00:00:00 2001 From: Alan Oliveira Date: Wed, 23 Oct 2024 08:06:24 +0900 Subject: [PATCH] improve test legibility --- test/env_file_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/env_file_test.rb b/test/env_file_test.rb index 26344934..34d31ad6 100644 --- a/test/env_file_test.rb +++ b/test/env_file_test.rb @@ -13,8 +13,8 @@ class EnvFileTest < ActiveSupport::TestCase test "to_s won't escape '#'" do env = { - "foo" => "\#$foo", - "bar" => "\#{bar}" + "foo" => '#$foo', + "bar" => '#{bar}' } assert_equal "foo=\#$foo\nbar=\#{bar}\n", \