|
33 | 33 | ], |
34 | 34 | """<PERSON> is funny and lives in <LOCATION>""", |
35 | 35 | ), |
36 | | - # broken! |
37 | | - # ( |
38 | | - # """JOHN lives IN SAN francisco""", |
39 | | - # [ |
40 | | - # """<PERSON> lives in <LOCATION>""", |
41 | | - # """john lives in san francisco""", |
42 | | - # ], |
43 | | - # """<PERSON> lives in <LOCATION>""", |
44 | | - # ) |
45 | | - # (broken) test behavior with a word close to PERSON |
46 | | - # ("""Perry is FUNNY and LIVES in NEW york""", |
47 | | - # ["""<PERSON> is FUNNY and lives in <LOCATION>""", |
48 | | - # """perry is funny and lives in new york"""], |
49 | | - # """<PERSON> is funny and lives in <LOCATION>"""), |
| 36 | + ( |
| 37 | + """JOHN lives IN SAN francisco""", |
| 38 | + [ |
| 39 | + """<PERSON> lives in <LOCATION>""", |
| 40 | + """john lives in san francisco""", |
| 41 | + ], |
| 42 | + """<PERSON> lives in <LOCATION>""", |
| 43 | + ), |
| 44 | + # (broken) test behavior with a word close to PERSON - seems to work!? |
| 45 | + ( |
| 46 | + """Parson is FUNNY and LIVES in NEW york""", |
| 47 | + [ |
| 48 | + """<PERSON> is FUNNY and lives in <LOCATION>""", |
| 49 | + """parson is funny and lives in new york""", |
| 50 | + ], |
| 51 | + """<PERSON> is funny and lives in <LOCATION>""", |
| 52 | + ), |
50 | 53 | ], |
51 | 54 | ) |
52 | 55 | def test_merge(original, new_values, expected): |
|
0 commit comments