From 4b1b722f10bc3ebc2e6dae84cedd733b8c511e0a Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 29 Jan 2022 16:04:12 -0500 Subject: [PATCH] test: recent nekohtml versions do not consider 'a' to be inline so let's pick an unambiguously-inline element to test. --- test/html4/test_element_description.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/html4/test_element_description.rb b/test/html4/test_element_description.rb index e2acdcf898..6f17f592af 100644 --- a/test/html4/test_element_description.rb +++ b/test/html4/test_element_description.rb @@ -43,7 +43,7 @@ def test_deprecated? end def test_inline? - assert_predicate(ElementDescription["a"], :inline?) + assert_predicate(ElementDescription["strong"], :inline?) refute_predicate(ElementDescription["div"], :inline?) end