We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609be71 commit ed322daCopy full SHA for ed322da
tests.py
@@ -2072,9 +2072,10 @@ def test_multiple_prefixes(self):
2072
self.m(hn.last, "van der Velt", hn)
2073
2074
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)
+ hh = HumanName("Vincent van Gogh van Beethoven")
+ self.m(hh.first, "Vincent", hh)
+ self.m(hh.middle, "van Gogh", hh)
2078
+ self.m(hh.last, "van Beethoven", hh)
2079
2080
class HumanNameCapitalizationTestCase(HumanNameTestBase):
2081
def test_capitalization_exception_for_III(self):
0 commit comments