@@ -206,7 +206,6 @@ module CodeOwnership
206206 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
207207 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
208208 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
209- puts e . message
210209 expect ( e . message ) . to eq <<~EXPECTED . chomp
211210 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
212211
@@ -225,7 +224,6 @@ module CodeOwnership
225224 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
226225 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
227226 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
228- puts e . message
229227 expect ( e . message ) . to eq <<~EXPECTED . chomp
230228 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
231229
@@ -250,7 +248,6 @@ module CodeOwnership
250248 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
251249 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
252250 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
253- puts e . message
254251 expect ( e . message ) . to eq <<~EXPECTED . chomp
255252 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
256253
@@ -279,7 +276,6 @@ module CodeOwnership
279276 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
280277 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
281278 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
282- puts e . message
283279 expect ( e . message ) . to eq <<~EXPECTED . chomp
284280 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
285281
@@ -326,7 +322,6 @@ module CodeOwnership
326322 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
327323 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
328324 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
329- puts e . message
330325 expect ( e . message ) . to eq <<~EXPECTED . chomp
331326 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
332327
@@ -384,7 +379,6 @@ module CodeOwnership
384379 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
385380 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
386381 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
387- puts e . message
388382 expect ( e . message ) . to eq <<~EXPECTED . chomp
389383 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
390384
@@ -430,7 +424,6 @@ module CodeOwnership
430424 expect_any_instance_of ( codeowners_validation ) . to_not receive ( :` ) # rubocop:disable RSpec/AnyInstance
431425 expect { CodeOwnership . validate! ( autocorrect : false ) } . to raise_error do |e |
432426 expect ( e ) . to be_a CodeOwnership ::InvalidCodeOwnershipConfigurationError
433- puts e . message
434427 expect ( e . message ) . to eq <<~EXPECTED . chomp
435428 CODEOWNERS out of date. Run `bin/codeownership validate` to update the CODEOWNERS file
436429
0 commit comments