We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5af04e commit cfc2b9dCopy full SHA for cfc2b9d
spec/usage/components/object_spec.rb
@@ -24,8 +24,8 @@ def response
24
static_output = page.html
25
26
expected_static_output = <<~HTML
27
- <object width="400" height="400" data="helloworld.swf"></object>
28
- <object id="my-id" class="my-class" width="400" height="400" data="helloworld.swf"></object>
+ <object data="helloworld.swf" height="400" width="400"></object>
+ <object data="helloworld.swf" height="400" id="my-id" width="400" class="my-class"></object>
29
HTML
30
31
expect(stripped(static_output)).to include(stripped(expected_static_output))
0 commit comments