Skip to content

Commit 4375703

Browse files
uncommented tests which are passing
1 parent c76e324 commit 4375703

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

tests/unit_tests/test_merge.py

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,23 @@
3333
],
3434
"""<PERSON> is funny and lives in <LOCATION>""",
3535
),
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+
),
5053
],
5154
)
5255
def test_merge(original, new_values, expected):

0 commit comments

Comments
 (0)