Skip to content

Commit 3931308

Browse files
fix(deps): bump src/cmudict/data from 7cd8fb5 to 0f8072f (#116)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David L. Day <[email protected]>
1 parent 0d455a3 commit 3931308

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/cmudict/data

Submodule data updated 1 file

tests/test_cmudict.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def test_dict_stream():
7-
EXPECTED_LENGTH = 135167
7+
EXPECTED_LENGTH = 135166
88
# borrowed from pronouncingpy to ensure compatibility
99
pronunciations = list()
1010
filehandle = cmudict.dict_stream()
@@ -19,7 +19,7 @@ def test_dict_stream():
1919

2020

2121
def test_dict_string():
22-
EXPECTED_LENGTH = 3618509
22+
EXPECTED_LENGTH = 3618488
2323
dict_string = cmudict.dict_string()
2424
LENGTH = len(dict_string)
2525
if EXPECTED_LENGTH != LENGTH:

tests/test_compatability.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_dict():
1414

1515

1616
def test_entries():
17-
EXPECTED = 135167
17+
EXPECTED = 135166
1818
e = cmudict.entries()
1919
COUNT = len(e)
2020
if COUNT != EXPECTED:
@@ -24,7 +24,7 @@ def test_entries():
2424

2525

2626
def test_raw():
27-
EXPECTED = 3618509
27+
EXPECTED = 3618488
2828
r = cmudict.raw()
2929
COUNT = len(r)
3030
if COUNT != EXPECTED:
@@ -34,7 +34,7 @@ def test_raw():
3434

3535

3636
def test_words():
37-
EXPECTED = 135167
37+
EXPECTED = 135166
3838
w = cmudict.words()
3939
COUNT = len(w)
4040
if COUNT != EXPECTED:

0 commit comments

Comments
 (0)