1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-28 11:42:03 +03:00

PEP8: fix E225: missing whitespace around operator

Signed-off-by: Joe Guo <joeg@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Joe Guo
2018-07-30 18:18:03 +12:00
committed by Douglas Bagnall
parent fb5ea356dd
commit 32266d2d48
51 changed files with 233 additions and 233 deletions

View File

@ -478,7 +478,7 @@ class UserCmdCryptShaTestCase(SambaToolCmdTest):
"virtualCryptSHA512;rounds=5129",
True)
self.assertFalse(sha256 == _get_attribute(out, "virtualCryptSHA256"))
self.assertFalse(sha512 ==_get_attribute(out, "virtualCryptSHA512"))
self.assertFalse(sha512 == _get_attribute(out, "virtualCryptSHA512"))
# The returned hashes should specify the correct number of rounds
self.assertTrue(sha256.startswith("{CRYPT}$5$rounds=2561"))