Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Dec 5, 2017
1 parent c0b1ee0 commit 82c77dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions psutil/tests/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -1389,9 +1389,9 @@ def clean_dict(d):
d.pop("PLAT", None)
d.pop("HOME", None)
if OSX:
d.pop("__CF_USER_TEXT_ENCODING")
d.pop("VERSIONER_PYTHON_PREFER_32_BIT")
d.pop("VERSIONER_PYTHON_VERSION")
d.pop("__CF_USER_TEXT_ENCODING", None)
d.pop("VERSIONER_PYTHON_PREFER_32_BIT", None)
d.pop("VERSIONER_PYTHON_VERSION", None)
return dict(
[(k.rstrip("\r\n"), v.rstrip("\r\n")) for k, v in d.items()])

Expand Down

0 comments on commit 82c77dc

Please sign in to comment.