Actually that should be an element, not modifier class

This commit is contained in:
Jason Zimdars
2025-01-28 18:05:01 -06:00
parent 523b543244
commit c7503c2663
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ class EventsControllerTest < ActionDispatch::IntegrationTest
test "index" do
get events_url
assert_select "div.event--wrapper[style='grid-area: 9/1']" do
assert_select "div.event__wrapper[style='grid-area: 9/1']" do
assert_select "strong", text: "Layout is broken"
end
end
@@ -18,7 +18,7 @@ class EventsControllerTest < ActionDispatch::IntegrationTest
get events_url
assert_select "div.event--wrapper[style='grid-area: 14/1']" do
assert_select "div.event__wrapper[style='grid-area: 14/1']" do
assert_select "strong", text: "Layout is broken"
end
end