From 85bc14a8eb2d33b87a965ace41d068689dfaa35d Mon Sep 17 00:00:00 2001 From: James Tanner Date: Thu, 6 Mar 2014 14:49:40 -0500 Subject: [PATCH] Remve debug file from vault unit test --- test/units/TestVault.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/units/TestVault.py b/test/units/TestVault.py index f42188057f8..bcb494965cf 100644 --- a/test/units/TestVault.py +++ b/test/units/TestVault.py @@ -43,7 +43,6 @@ class TestVaultLib(TestCase): sensitive_data = "ansible" sensitive_hex = hexlify(sensitive_data) data = v._add_headers_and_hexify_encrypted_data(sensitive_data) - open("/tmp/awx.log", "a").write("data: %s\n" % data) lines = data.split('\n') assert len(lines) > 1, "failed to properly add header" header = lines[0]