Skip to content

Commit

Permalink
spec/dom/element: fix HTML for attribute specs
Browse files Browse the repository at this point in the history
  • Loading branch information
meh committed Feb 4, 2014
1 parent 92cc712 commit d62e010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/dom/element/attributes_spec.rb
Expand Up @@ -2,7 +2,7 @@

describe Browser::DOM::Element::Attributes do
html <<-HTML
<label id="lol" class="name" for="hue"></div>
<label id="lol" class="name" for="hue"></label>
HTML

describe '#[]' do
Expand Down
4 changes: 2 additions & 2 deletions spec/dom/element_spec.rb
Expand Up @@ -117,7 +117,7 @@

describe '#[]' do
html <<-HTML
<div id="lol" class="name" for="hue"></div>
<label id="lol" class="name" for="hue"></label>
HTML

it 'gets an attribute' do
Expand All @@ -135,7 +135,7 @@

describe '#[]=' do
html <<-HTML
<div id="lol" class="name" for="hue"></div>
<label id="lol" class="name" for="hue"></label>
HTML

it 'sets an attribute' do
Expand Down

0 comments on commit d62e010

Please sign in to comment.