Skip to content

Commit

Permalink
uncomment test
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jun 19, 2024
1 parent 02747fe commit 2a3bbfb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/test_dedupe.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ def test_data_model(self):

self.assertRaises(TypeError, DataModel)

# data_model = DataModel(
# [
# dedupe.variables.String(field="a", name="a"),
# dedupe.variables.String(field="b", name="b"),
# dedupe.variables.Interaction("a", "b")
# ]
# )

# assert data_model._interaction_indices == [[0, 1]]
data_model = DataModel(
[
dedupe.variables.String(field="a", name="a"),
dedupe.variables.String(field="b", name="b"),
dedupe.variables.Interaction("a", "b"),
]
)

assert data_model._interaction_indices == [[0, 1]]

data_model = DataModel(
[
Expand Down

0 comments on commit 2a3bbfb

Please sign in to comment.