@@ -101,7 +101,7 @@ def test_create_all
101
101
name: bundle_ruby_3_0_0
102
102
postgres12:
103
103
DOCKER_COMPOSE
104
- assert_equal expect_file_content , file_content
104
+ assert_equal expect_file_content . strip , file_content . strip
105
105
106
106
file_content = File . read ( dummy_gem_docker_compose_folder_path . join ( "ruby_3_0_active_model_7_0.yml" ) )
107
107
expect_file_content = <<~DOCKER_COMPOSE
@@ -137,7 +137,7 @@ def test_create_all
137
137
name: bundle_ruby_3_0_0
138
138
postgres12:
139
139
DOCKER_COMPOSE
140
- assert_equal expect_file_content , file_content
140
+ assert_equal expect_file_content . strip , file_content . strip
141
141
142
142
file_content = File . read ( dummy_gem_docker_compose_folder_path . join ( "ruby_3_1_active_model_6_1.yml" ) )
143
143
expect_file_content = <<~DOCKER_COMPOSE
@@ -173,7 +173,7 @@ def test_create_all
173
173
name: bundle_ruby_3_1_0
174
174
postgres12:
175
175
DOCKER_COMPOSE
176
- assert_equal expect_file_content , file_content
176
+ assert_equal expect_file_content . strip , file_content . strip
177
177
178
178
file_content = File . read ( dummy_gem_docker_compose_folder_path . join ( "ruby_3_1_active_model_7_0.yml" ) )
179
179
expect_file_content = <<~DOCKER_COMPOSE
@@ -209,7 +209,7 @@ def test_create_all
209
209
name: bundle_ruby_3_1_0
210
210
postgres12:
211
211
DOCKER_COMPOSE
212
- assert_equal expect_file_content , file_content
212
+ assert_equal expect_file_content . strip , file_content . strip
213
213
end
214
214
215
215
0 commit comments