test/extra/checking/checks/test_css.rb in nanoc-4.0.0 vs test/extra/checking/checks/test_css.rb in nanoc-4.0.1

- old
+ new

@@ -30,12 +30,14 @@ check.run # Check refute check.issues.empty? assert_equal 1, check.issues.size - assert_equal 'line 1: Property coxlor doesn\'t exist: h1 { coxlor: rxed; }', - check.issues.to_a[0].description + assert_equal( + 'line 1: Property coxlor doesn\'t exist: h1 { coxlor: rxed; }', + check.issues.to_a[0].description, + ) end end end def test_run_parse_error @@ -51,11 +53,10 @@ check.run # Check refute check.issues.empty? assert_equal 1, check.issues.size - assert_equal 'line 1: Parse Error: h1 { ; {', - check.issues.to_a[0].description + assert_equal 'line 1: Parse Error: h1 { ; {', check.issues.to_a[0].description end end end end