fix bad copy paste

This commit is contained in:
christopher 2018-12-28 15:51:34 -05:00
parent 8524aed718
commit 1ba27fe5b3

View file

@ -172,5 +172,5 @@ def test_mixed_types():
m2 = {"a": {"b": [3, 4]}}
z = ChainDB(m1)
z.maps.append(m2)
assert isinstance(z["a"]["b"], set)
assert isinstance(z["a"]["b"], list)
assert z["a"]["b"] == [1, 2, 3, 4]