Skip to content

Commit ed322da

Browse files
committed
Change test
1 parent 609be71 commit ed322da

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2072,9 +2072,10 @@ def test_multiple_prefixes(self):
20722072
self.m(hn.last, "van der Velt", hn)
20732073

20742074
def test_2_same_prefixes_in_the_name(self):
2075-
hh = HumanName("Van Ma Van")
2076-
self.m(hh.first, "Van Ma", hh)
2077-
self.m(hh.last, "Van", hh)
2075+
hh = HumanName("Vincent van Gogh van Beethoven")
2076+
self.m(hh.first, "Vincent", hh)
2077+
self.m(hh.middle, "van Gogh", hh)
2078+
self.m(hh.last, "van Beethoven", hh)
20782079

20792080
class HumanNameCapitalizationTestCase(HumanNameTestBase):
20802081
def test_capitalization_exception_for_III(self):

0 commit comments

Comments
 (0)