X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2651db7254e4173de4698351eeeb2dc5ae66bdd1..75e135869e26a1aeae93f3334668de01c3bb2f69:/test/integration/client_applications_test.rb diff --git a/test/integration/client_applications_test.rb b/test/integration/client_applications_test.rb index b50a990c6..4c3e9df47 100644 --- a/test/integration/client_applications_test.rb +++ b/test/integration/client_applications_test.rb @@ -78,17 +78,13 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest ## # utility method to make the HTML screening easier to read. - def assert_in_heading - assert_select "div.content-heading" do - yield - end + def assert_in_heading(&block) + assert_select("div.content-heading", &block) end ## # utility method to make the HTML screening easier to read. - def assert_in_body - assert_select "div#content" do - yield - end + def assert_in_body(&block) + assert_select("div#content", &block) end end