Skip to content

Commit d62e010

Browse files
committedFeb 4, 2014
spec/dom/element: fix HTML for attribute specs
1 parent 92cc712 commit d62e010

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎spec/dom/element/attributes_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
describe Browser::DOM::Element::Attributes do
44
html <<-HTML
5-
<label id="lol" class="name" for="hue"></div>
5+
<label id="lol" class="name" for="hue"></label>
66
HTML
77

88
describe '#[]' do

‎spec/dom/element_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
describe '#[]' do
119119
html <<-HTML
120-
<div id="lol" class="name" for="hue"></div>
120+
<label id="lol" class="name" for="hue"></label>
121121
HTML
122122

123123
it 'gets an attribute' do
@@ -135,7 +135,7 @@
135135

136136
describe '#[]=' do
137137
html <<-HTML
138-
<div id="lol" class="name" for="hue"></div>
138+
<label id="lol" class="name" for="hue"></label>
139139
HTML
140140

141141
it 'sets an attribute' do

0 commit comments

Comments
 (0)