From ecb6c18ac5bfe4fa9e3f29aa8a90ddfcce552177 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 2 Jul 2018 10:56:50 -0400 Subject: [PATCH] I believe the expected outcome should not have the trailing zeros. Ref #14. --- test/test_fuzzy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_fuzzy.py b/test/test_fuzzy.py index 1c64271..50ee00c 100644 --- a/test/test_fuzzy.py +++ b/test/test_fuzzy.py @@ -22,7 +22,7 @@ def test_soundex_result(): @pytest.mark.xfail(reason="issue #14") def test_soundex_Test(): - assert fuzzy.Soundex(8)('Test') == 'T2300000' + assert fuzzy.Soundex(8)('Test') == 'T23' def test_DMetaphone():