Skip to content

Commit d20dab1

Browse files
Remove
1 parent 53bb1fc commit d20dab1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/unit/test_datastructures.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ def setUp(self):
1515

1616
def test_get(self):
1717
assert self.context_feature_set["context_2"].shape == (1, 3)
18+
assert ("context_2" in self.context_feature_set) == True
19+
20+
def test_copy(self):
21+
self.another_context_feature_set = self.context_feature_set.copy()
22+
assert len(self.another_context_feature_set) == len(self.context_feature_set)
1823

1924
def test_len(self):
2025
assert len(self.context_feature_set) == 2

0 commit comments

Comments
 (0)