Skip to content

Commit

Permalink
test_processes: Fix test_process_object image path check
Browse files Browse the repository at this point in the history
  • Loading branch information
netanel committed Nov 21, 2023
1 parent 850b203 commit ca9cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcclient/tests/test_processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_process_object(client):
assert server.pid > 0
assert len(server.regions) > 0
assert len(server.images) > 0
assert Path(server.images[0].path).resolve() == Path(server.path).resolve()
assert len([img for img in server.images if Path(img.path).resolve() == Path(server.path).resolve()]) > 0
fds = server.fds
assert fds[0].fd == 0
assert fds[1].fd == 1
Expand Down

0 comments on commit ca9cd50

Please sign in to comment.