From 644e50fe34cc89e381b6edb12fb65130709bcfff Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 12 Mar 2015 11:37:57 -0700 Subject: [PATCH] Hash randomization makes one of the heuristic_log_sanitize checks not work. Nothing we can do, when it sanitizes ssh_urls it's simply overzealous. --- test/units/TestModuleUtilsBasic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/TestModuleUtilsBasic.py b/test/units/TestModuleUtilsBasic.py index 2ac77764d74..5fd3d6b1db4 100644 --- a/test/units/TestModuleUtilsBasic.py +++ b/test/units/TestModuleUtilsBasic.py @@ -321,7 +321,7 @@ class TestModuleUtilsBasicHelpers(unittest.TestCase): # the password we can tell some things about the beginning and end of # the data, though: self.assertTrue(ssh_output.startswith("{'")) - self.assertTrue(ssh_output.endswith("'}}}}")) + self.assertTrue(ssh_output.endswith("}")) try: self.assertIn(":********@foo.com/data',", ssh_output) except AttributeError: