diff options
-rw-r--r-- | test/fixtures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures.py b/test/fixtures.py index b286619..73fdfa9 100644 --- a/test/fixtures.py +++ b/test/fixtures.py @@ -212,8 +212,8 @@ class KafkaFixture(Fixture): if proc.wait() != 0: self.out("Failed to create Zookeeper chroot node") - self.out(proc.stdout) - self.out(proc.stderr) + self.out(proc.stdout.read()) + self.out(proc.stderr.read()) raise RuntimeError("Failed to create Zookeeper chroot node") self.out("Done!") |