summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-03-19 07:13:52 +1100
committerDamien Miller <djm@mindrot.org>2013-03-19 07:13:52 +1100
commitd100528d97b412b939ec03ff562f8ce5c009ede2 (patch)
tree9493c29f20514690225ce378f35be28c08aa2419
parente2d13662246d419fe9a1f749b0ea538646b6b61d (diff)
downloadpy-bcrypt-d100528d97b412b939ec03ff562f8ce5c009ede2.tar.gz
correct test name
-rwxr-xr-xtest/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index 139b9c0..b0bf995 100755
--- a/test/test.py
+++ b/test/test.py
@@ -62,7 +62,7 @@ test_vectors = [
'$2a$12$WApznUOJfkEGSmYRfnkrPOr466oFDCaj4b6HY3EXGvfxm43seyhgC' ],
]
-class TestRadix(unittest.TestCase):
+class TestBcrypt(unittest.TestCase):
def test_00__test_vectors(self):
for plain, salt, expected in test_vectors:
self.assertEqual(bcrypt.hashpw(plain, salt), expected)