Skip to content

Commit 25770ac

Browse files
committedFeb 3, 2014
spec: fix attributes specs
1 parent cff0d24 commit 25770ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎spec/dom/element/attributes_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141

4242
describe '#each' do
4343
it 'enumerates over the attributes' do
44-
expect($document[:lol].attributes.to_a).to eq \
45-
[[:id, :lol], [:class, :name], [:for, :hue]]
44+
expect($document[:lol].attributes.to_a.sort).to eq \
45+
[[:class, :name], [:for, :hue], [:id, :lol]]
4646
end
4747
end
4848
end

0 commit comments

Comments
 (0)
Please sign in to comment.