summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/each_element_with_text_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rexml/element/each_element_with_text_spec.rb')
-rw-r--r--spec/ruby/library/rexml/element/each_element_with_text_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/rexml/element/each_element_with_text_spec.rb b/spec/ruby/library/rexml/element/each_element_with_text_spec.rb
index 8f9d062c99..a4a200d237 100644
--- a/spec/ruby/library/rexml/element/each_element_with_text_spec.rb
+++ b/spec/ruby/library/rexml/element/each_element_with_text_spec.rb
@@ -16,10 +16,10 @@ ruby_version_is ''...'3.0' do
@document.root << @joe
@document.root << @fred
@document.root << @another
- @childs = []
+ @children = []
end
- it "returns childs with text" do
+ it "returns children with text" do
@document.each_element_with_text("Joe"){|c| c.should == @joe}
end