spec/transactions_spec.rb in fakeredis-0.4.1 vs spec/transactions_spec.rb in fakeredis-0.4.2
- old
+ new
@@ -11,9 +11,9 @@
@client.set("key1", "1")
@client.set("key2", "2")
@client.mget("key1", "key2")
end
- transaction.should == ["OK", "OK", ["1", "2"]]
+ transaction.should be == ["OK", "OK", ["1", "2"]]
end
end
end