From a2814443bbe30c368d5a44ae2bbc9a440c9d47e7 Mon Sep 17 00:00:00 2001 From: Mike Angell <53470248+shopmike@users.noreply.github.com> Date: Tue, 17 Sep 2019 00:31:19 +1000 Subject: [PATCH] Prefer string interpolation in simple cases Co-Authored-By: Dylan Thacker-Smith --- test/integration/drop_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/drop_test.rb b/test/integration/drop_test.rb index 01484b9..6069713 100644 --- a/test/integration/drop_test.rb +++ b/test/integration/drop_test.rb @@ -33,7 +33,7 @@ class ProductDrop < Liquid::Drop class CatchallDrop < Liquid::Drop def liquid_method_missing(method) - +'catchall_method: ' << method.to_s + "catchall_method: #{method}" end end