$OpenBSD: patch-pytest_expect_expect_py,v 1.1.1.1 2017/06/28 18:00:36 shadchin Exp $

Index: pytest_expect/expect.py
--- pytest_expect/expect.py.orig
+++ pytest_expect/expect.py
@@ -15,7 +15,7 @@ import os.path
 import sys
 
 import pytest
-import umsgpack
+import msgpack
 from six import PY2, PY3, text_type, binary_type
 
 _magic_file_line = b"pytest-expect file v"
@@ -142,7 +142,7 @@ class ExpectationPlugin(object):
             fp.write(line)
 
     def _parse_legacy_file(self, fp):
-        state = umsgpack.unpack(fp)
+        state = msgpack.unpack(fp)
 
         if PY3 and b'py_version' in state:
             for key in list(state.keys()):
