Skip to content

Commit 2a3bbfb

Browse files
committed
uncomment test
1 parent 02747fe commit 2a3bbfb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/test_dedupe.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ def test_data_model(self):
3636

3737
self.assertRaises(TypeError, DataModel)
3838

39-
# data_model = DataModel(
40-
# [
41-
# dedupe.variables.String(field="a", name="a"),
42-
# dedupe.variables.String(field="b", name="b"),
43-
# dedupe.variables.Interaction("a", "b")
44-
# ]
45-
# )
46-
47-
# assert data_model._interaction_indices == [[0, 1]]
39+
data_model = DataModel(
40+
[
41+
dedupe.variables.String(field="a", name="a"),
42+
dedupe.variables.String(field="b", name="b"),
43+
dedupe.variables.Interaction("a", "b"),
44+
]
45+
)
46+
47+
assert data_model._interaction_indices == [[0, 1]]
4848

4949
data_model = DataModel(
5050
[

0 commit comments

Comments
 (0)