summaryrefslogtreecommitdiffhomepage
path: root/test/util
diff options
context:
space:
mode:
Diffstat (limited to 'test/util')
-rw-r--r--test/util/tc_simple_typed_list.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/util/tc_simple_typed_list.rb b/test/util/tc_simple_typed_list.rb
index d74cc9cc..1596ac13 100644
--- a/test/util/tc_simple_typed_list.rb
+++ b/test/util/tc_simple_typed_list.rb
@@ -72,7 +72,6 @@ class TestSimpleTypedList < Test::Unit::TestCase
def test_equality
@list.push 1
@list.push 2
- assert_equal(@list, [1,2])
-
+ assert_equal(@list.to_ary, [1,2])
end
end