test/test_io.rb in avro-1.7.5 vs test/test_io.rb in avro-1.7.6
- old
+ new
@@ -306,11 +306,11 @@
parsed_string = schema.to_s
# test that the round-trip didn't mess up anything
# NB: I don't think we should do this. Why enforce ordering?
- assert_equal(Yajl.load(str),
- Yajl.load(parsed_string))
+ assert_equal(MultiJson.load(str),
+ MultiJson.load(parsed_string))
# test __eq__
assert_equal(schema, Avro::Schema.parse(str))
# test hashcode doesn't generate infinite recursion