You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reordered the attribute values of stylesheet_pack_tag.
In Rails 7, `media` is optional and the order of attribute values in stylesheet_link_tag has changed,
so I modified the test code accordingly.
```
Failure:
HelperTest#test_stylesheet_pack_tag [/Users/jun.morita/Documents/repo/simpacker/test/helper_test.rb:12]:
--- expected
+++ actual
@@ -1 +1 @@
-"<link rel=\"stylesheet\" media=\"screen\" href=\"/packs/application.css\" />"
+"<link rel=\"stylesheet\" href=\"/packs/application.css\" media=\"screen\" />"
```
ref: rails/rails#41215
0 commit comments