summaryrefslogtreecommitdiff
path: root/test/yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/yaml')
-rw-r--r--test/yaml/test_yaml.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb
index 642ebc558f..fd9f79b5f3 100644
--- a/test/yaml/test_yaml.rb
+++ b/test/yaml/test_yaml.rb
@@ -1191,7 +1191,7 @@ EOY
require 'yaml'
t = Time.now
5.times do
- assert_equals( t, YAML.load( YAML.dump( t ) ) )
+ assert_equal( t, YAML.load( YAML.dump( t ) ) )
end
end