From 501bab2f64aa33f072382e1b57b26a10c00018c1 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Tue, 24 Sep 2019 13:47:35 +0900 Subject: [PATCH] form_with takes keyword arguments --- actiontext/test/template/form_helper_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actiontext/test/template/form_helper_test.rb b/actiontext/test/template/form_helper_test.rb index cf7e4c0c69..1084b2d304 100644 --- a/actiontext/test/template/form_helper_test.rb +++ b/actiontext/test/template/form_helper_test.rb @@ -5,7 +5,7 @@ require "test_helper" class ActionText::FormHelperTest < ActionView::TestCase tests ActionText::TagHelper - def form_with(*) + def form_with(*, **) @output_buffer = super end