1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Skip test that depends on deprecated exception.
Author: Lucas Kanashiro <lucas.kanashiro@collabora.com>
Soren Stoutner <soren@debian.org>
Forwarded: https://github.com/rails/actionpack-xml_parser/issues/20
Last-Updated: 2025-08-16
--- a/test/xml_params_parsing_test.rb
+++ b/test/xml_params_parsing_test.rb
@@ -64,6 +64,7 @@ class XmlParamsParsingTest < ActionDispa
end
test "occurring a parse error if parsing unsuccessful" do
+ skip "ActionDispatch::ParamsParser::ParseError was deprecated and removed from actionpack"
with_test_routing do
begin
$stderr = StringIO.new # suppress the log
|