From 5b38c40ca08e1318b8dcfb345d8f82c96e9ece95 Mon Sep 17 00:00:00 2001 From: Koji Onishi Date: Sun, 29 Dec 2019 17:12:33 +0900 Subject: [PATCH] fix keyword arguments for future compatibility --- test/support/http_method_compatibility.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/support/http_method_compatibility.rb b/test/support/http_method_compatibility.rb index de207087f2..a2c256f722 100644 --- a/test/support/http_method_compatibility.rb +++ b/test/support/http_method_compatibility.rb @@ -11,7 +11,7 @@ class IntegrationTest < ActionDispatch::IntegrationTest if options.empty? super url else - super url, options + super url, **options end end else @@ -36,7 +36,7 @@ class ControllerTestCase < ActionController::TestCase if options.empty? super action else - super action, options + super action, **options end end else