Skip to content

Commit

Permalink
πŸ› Issue #37
Browse files Browse the repository at this point in the history
  • Loading branch information
ferzcam committed Nov 19, 2024
1 parent 30d676f commit ffccdd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/projection/test_edge.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def test_get_ents_and_rels_method(self):

ents, rels = Edge.get_entities_and_relations([edge1, edge2])

self.assertEqual(ents, {"src1", "src2", "dst1", "dst2"})
self.assertEqual(rels, {"rel1", "rel2"})
self.assertEqual(ents, ["dst1", "dst2", "src1", "src2"])
self.assertEqual(rels, ["rel1", "rel2"])

def test_zip_method(self):
"""This checks if Edge.zip method works correctly"""
Expand Down

0 comments on commit ffccdd8

Please sign in to comment.