aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-02-25 22:56:13 -0800
committerJohn Hawthorn <john@hawthorn.email>2019-02-26 16:59:04 -0800
commitbcd42ae974eb04cb5def7a01d194e70b87bc4152 (patch)
treeb5137a5db13808ce84bed7ed121cbe21a4c57ea5 /actionview/test
parentc2145462178d2b28135fac38ebbceeaadfa151df (diff)
downloadrails-bcd42ae974eb04cb5def7a01d194e70b87bc4152.tar.gz
rails-bcd42ae974eb04cb5def7a01d194e70b87bc4152.tar.bz2
rails-bcd42ae974eb04cb5def7a01d194e70b87bc4152.zip
Remove query_format argument from resolver
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/template/testing/null_resolver_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/testing/null_resolver_test.rb b/actionview/test/template/testing/null_resolver_test.rb
index dad8d0966d..c7c78804c0 100644
--- a/actionview/test/template/testing/null_resolver_test.rb
+++ b/actionview/test/template/testing/null_resolver_test.rb
@@ -9,6 +9,6 @@ class NullResolverTest < ActiveSupport::TestCase
assert_equal 1, templates.size, "expected one template"
assert_equal "Template generated by Null Resolver", templates.first.source
assert_equal "arbitrary/path.erb", templates.first.virtual_path.to_s
- assert_equal :html, templates.first.format
+ assert_nil templates.first.format
end
end