Skip to content

Commit

Permalink
Merge pull request teamcapybara#350 from pivotal/master
Browse files Browse the repository at this point in the history
Fixed tag_name method, again
  • Loading branch information
jnicklas committed May 17, 2011
2 parents 58c8141 + 2d2f877 commit 4c3ce57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/capybara/rack_test/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def click
end

def tag_name
native.node_name.downcase
native.node_name
end

def visible?
Expand Down
2 changes: 1 addition & 1 deletion lib/capybara/selenium/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def drag_to(element)
end

def tag_name
native.tag_name
native.tag_name.downcase
end

def visible?
Expand Down

0 comments on commit 4c3ce57

Please sign in to comment.