From 57a5be70f553d9ebf084fa39fa718e5dafeb38d3 Mon Sep 17 00:00:00 2001 From: Larry Reid Date: Sat, 1 Oct 2022 12:04:23 -0700 Subject: [PATCH] Fix the bogus Rubocop autocorrect (#659) --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 7db8811ed..8cbd3c2f9 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -71,7 +71,7 @@ def assert_equivalent_xml(expected, actual) Diffy::Diff.new( sort_attributes(expected_xml.root).to_xml(indent: 2), sort_attributes(actual_xml.root).to_xml(indent: 2) - ).to_formatted_s(:color) + ).to_s(:color) } end