Skip to content

Commit cfc2b9d

Browse files
Fix failing specs on object component
1 parent c5af04e commit cfc2b9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/usage/components/object_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def response
2424
static_output = page.html
2525

2626
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>
27+
<object data="helloworld.swf" height="400" width="400"></object>
28+
<object data="helloworld.swf" height="400" id="my-id" width="400" class="my-class"></object>
2929
HTML
3030

3131
expect(stripped(static_output)).to include(stripped(expected_static_output))

0 commit comments

Comments
 (0)