From 23b09842136c83e22e712f5c6f46f104143b10a7 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 27 Feb 2016 19:10:28 -0500 Subject: Send stderr someplace Otherwise there's noise in the test output on python 2.6 --- tests/hazmat/backends/test_openssl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 0b55a485..f94b94ab 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -268,7 +268,8 @@ class TestOpenSSLRandomEngine(object): subprocess.check_call( [sys.executable, "-c", engine_printer], env=env, - stdout=out + stdout=out, + stderr=subprocess.PIPE, ) osrandom_engine_name = backend._ffi.string( -- cgit v1.2.3