diff options
Diffstat (limited to 'spec/rubyspec/library/rexml/element/add_attribute_spec.rb')
-rw-r--r-- | spec/rubyspec/library/rexml/element/add_attribute_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/rubyspec/library/rexml/element/add_attribute_spec.rb b/spec/rubyspec/library/rexml/element/add_attribute_spec.rb index 74eceee99b..998f5d6251 100644 --- a/spec/rubyspec/library/rexml/element/add_attribute_spec.rb +++ b/spec/rubyspec/library/rexml/element/add_attribute_spec.rb @@ -34,7 +34,7 @@ describe "REXML::Element#add_attribute" do @person.attributes["male"].should == "true" end - it "returns the attribute added" do + it "returns the attribute added" do attr = REXML::Attribute.new("name", "Tony") @person.add_attribute(attr).should == attr end |