summaryrefslogtreecommitdiff
path: root/_test/test_contextmanager.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/test_contextmanager.py')
-rw-r--r--_test/test_contextmanager.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/_test/test_contextmanager.py b/_test/test_contextmanager.py
index 76d24aa..7216473 100644
--- a/_test/test_contextmanager.py
+++ b/_test/test_contextmanager.py
@@ -41,7 +41,10 @@ def get_yaml():
class TestOldStyle:
def test_single_load(self):
- assert get_yaml().load(single_doc) == single_data
+ d = get_yaml().load(single_doc)
+ print(d)
+ print(type(d[0]))
+ assert d == single_data
def test_single_load_no_arg(self):
with pytest.raises(TypeError):