From 1ba27fe5b32baa46770b54dea284485c7791952c Mon Sep 17 00:00:00 2001 From: christopher Date: Fri, 28 Dec 2018 15:51:34 -0500 Subject: [PATCH] fix bad copy paste --- tests/test_lib/test_collections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_lib/test_collections.py b/tests/test_lib/test_collections.py index 71b201bcb..727d886c5 100644 --- a/tests/test_lib/test_collections.py +++ b/tests/test_lib/test_collections.py @@ -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]