Skip to content

Commit

Permalink
vendored Docker SDK for Python code: Fix missing asserts or assignments
Browse files Browse the repository at this point in the history
Cherry-picked from docker/docker-py@0566f12

Co-authored-by: Aarni Koskela <akx@iki.fi>
  • Loading branch information
felixfontein and akx committed Oct 7, 2023
1 parent 81e402e commit d7339f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/plugins/module_utils/_api/api/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ def test_read_from_socket_no_stream_tty_demux(self):

def test_read_from_socket_no_stream_no_tty(self):
res = self.request(stream=False, tty=False, demux=False)
res == self.stdout_data + self.stderr_data
assert res == self.stdout_data + self.stderr_data

def test_read_from_socket_no_stream_no_tty_demux(self):
res = self.request(stream=False, tty=False, demux=True)
Expand Down

0 comments on commit d7339f1

Please sign in to comment.