Skip to content

Commit

Permalink
fix: fix pickling error in purerpc.test_utils._WrappedResult
Browse files Browse the repository at this point in the history
  • Loading branch information
standy66 committed Feb 15, 2019
1 parent b773c7b commit 9f0a63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/purerpc/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def compile_temp_proto(*relative_proto_paths):
sys.path.remove(temp_dir)


_WrappedResult = collections.namedtuple("WrappedResult", ("result", "exc_info"))
_WrappedResult = collections.namedtuple("_WrappedResult", ("result", "exc_info"))


def _wrap_gen_in_process(conn: multiprocessing.connection.Connection):
Expand Down

0 comments on commit 9f0a63d

Please sign in to comment.