From 1e5a50b71d8f0eae6007bedc329eecb24bb5aba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 6 Apr 2022 03:37:17 +0800 Subject: update from upstream --- test/test_verbose_output.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/test_verbose_output.py') diff --git a/test/test_verbose_output.py b/test/test_verbose_output.py index 050fd76..98c6d70 100644 --- a/test/test_verbose_output.py +++ b/test/test_verbose_output.py @@ -19,52 +19,52 @@ class TestVerboseOutput(unittest.TestCase): [ sys.executable, 'hypervideo_dl/__main__.py', '-v', '--username', 'johnsmith@gmail.com', - '--password', 'secret', + '--password', 'my_secret_password', ], cwd=rootDir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) sout, serr = outp.communicate() self.assertTrue(b'--username' in serr) self.assertTrue(b'johnsmith' not in serr) self.assertTrue(b'--password' in serr) - self.assertTrue(b'secret' not in serr) + self.assertTrue(b'my_secret_password' not in serr) def test_private_info_shortarg(self): outp = subprocess.Popen( [ sys.executable, 'hypervideo_dl/__main__.py', '-v', '-u', 'johnsmith@gmail.com', - '-p', 'secret', + '-p', 'my_secret_password', ], cwd=rootDir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) sout, serr = outp.communicate() self.assertTrue(b'-u' in serr) self.assertTrue(b'johnsmith' not in serr) self.assertTrue(b'-p' in serr) - self.assertTrue(b'secret' not in serr) + self.assertTrue(b'my_secret_password' not in serr) def test_private_info_eq(self): outp = subprocess.Popen( [ sys.executable, 'hypervideo_dl/__main__.py', '-v', '--username=johnsmith@gmail.com', - '--password=secret', + '--password=my_secret_password', ], cwd=rootDir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) sout, serr = outp.communicate() self.assertTrue(b'--username' in serr) self.assertTrue(b'johnsmith' not in serr) self.assertTrue(b'--password' in serr) - self.assertTrue(b'secret' not in serr) + self.assertTrue(b'my_secret_password' not in serr) def test_private_info_shortarg_eq(self): outp = subprocess.Popen( [ sys.executable, 'hypervideo_dl/__main__.py', '-v', '-u=johnsmith@gmail.com', - '-p=secret', + '-p=my_secret_password', ], cwd=rootDir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) sout, serr = outp.communicate() self.assertTrue(b'-u' in serr) self.assertTrue(b'johnsmith' not in serr) self.assertTrue(b'-p' in serr) - self.assertTrue(b'secret' not in serr) + self.assertTrue(b'my_secret_password' not in serr) if __name__ == '__main__': -- cgit v1.2.3