Skip to content

Commit 6da7fb3

Browse files
committed
remove tests for Bart as suffix, bart no longer in suffixes
1 parent ba4d69a commit 6da7fb3

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

tests.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,19 +1727,7 @@ def test_potential_suffix_that_is_also_last_name_comma(self):
17271727
hn = HumanName("Ma, Jack")
17281728
self.m(hn.first, "Jack", hn)
17291729
self.m(hn.last, "Ma", hn)
1730-
1731-
def test_potential_suffix_that_is_also_first_name_comma(self):
1732-
hn = HumanName("Johnson, Bart")
1733-
self.m(hn.first, "Bart", hn)
1734-
self.m(hn.last, "Johnson", hn)
1735-
1736-
# TODO: handle conjunctions in last names followed by first names clashing with suffixes
1737-
@unittest.expectedFailure
1738-
def test_potential_suffix_that_is_also_first_name_comma_with_conjunction(self):
1739-
hn = HumanName("De la Vina, Bart")
1740-
self.m(hn.first, "Bart", hn)
1741-
self.m(hn.last, "De la Vina", hn)
1742-
1730+
17431731
def test_potential_suffix_that_is_also_last_name_with_suffix(self):
17441732
hn = HumanName("Jack Ma Jr")
17451733
self.m(hn.first, "Jack", hn)

0 commit comments

Comments
 (0)