From: Steven Tobin Date: Mon, 27 Mar 2017 10:39:53 +0000 (+0100) Subject: fix broken test X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=b223066892de5f364610a03db9a3eb51c8e6ae63;p=redacted-XKCD-password-generator.git fix broken test --- diff --git a/README.rst b/README.rst index e9025c4..9f99bf1 100644 --- a/README.rst +++ b/README.rst @@ -164,6 +164,7 @@ An important caveat: due to the significant reduction in the size of the filtere Changelog ========= +- **1.9.5** Fix broken test - **1.9.4** Improve office-safe wordlist contents - **1.9.3** Link EFF wordlist information, fix typos, update copyright - **1.9.2** Added Debian cracklib path diff --git a/setup.py b/setup.py index f9ec003..f441a59 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='xkcdpass', - version='1.9.4', + version='1.9.5', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator', diff --git a/tests/xkcdp_tests.py b/tests/xkcdp_tests.py index 0a68da2..b8ae6b8 100644 --- a/tests/xkcdp_tests.py +++ b/tests/xkcdp_tests.py @@ -17,7 +17,7 @@ class XkcdPasswordTests(unittest.TestCase): valid_chars='[a-z]') def test_loadwordfile(self): - self.assertEquals(len(self.wordlist_full), 29612) + self.assertEquals(len(self.wordlist_full), 29611) def test_regex(self): self.assertNotIn("__$$$__", self.wordlist_small)