diff options
author | Florian Frank <flori@ping.de> | 2011-11-22 10:23:04 +0100 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2011-11-22 10:23:04 +0100 |
commit | 504e6d464d7eb3b153f5e107698588f135de8511 (patch) | |
tree | 9b7c4852b62c1131a9582f6667ca5454b45e75a9 /tests | |
parent | 8828e9cd225ac0591b3a5015a53cb91b7232bd83 (diff) | |
parent | a04856d8ea1bc5e98e9a8ef299dffd6bee365fc1 (diff) | |
download | json-504e6d464d7eb3b153f5e107698588f135de8511.tar.gz |
Merge branch 'master' of https://github.com/jpartlow/json into jpartlow-master
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_json_addition.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_json_addition.rb b/tests/test_json_addition.rb index 1b85e02..e262e25 100755 --- a/tests/test_json_addition.rb +++ b/tests/test_json_addition.rb @@ -130,7 +130,7 @@ class TC_JSONAddition < Test::Unit::TestCase def test_core t = Time.now - assert_equal t.inspect, JSON(JSON(t)).inspect + assert_equal t, JSON(JSON(t)) d = Date.today assert_equal d, JSON(JSON(d)) d = DateTime.civil(2007, 6, 14, 14, 57, 10, Rational(1, 12), 2299161) |