Skip to content

Commit

Permalink
test more lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Mar 6, 2024
1 parent c49d294 commit 73d4ab8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion unittests/test_chip.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ def test_is_xy(self):
self.assertNotEqual((0, 0, 0), chip00)
self.assertNotEqual(chip00, (0, 1))
self.assertNotEqual((0, 1), chip00)
self.assertEqual([chip24, xy00, chip36], [chip24, (0,0), chip36])
self.assertEqual([chip24, chip00, chip36], [(2, 4), xy00, xy36])
self.assertEqual([(2, 4), xy00, xy36], [chip24, chip00, chip36])
self.assertEqual([chip24, xy00, chip36], [(2, 4), chip00, xy36])


if __name__ == '__main__':
Expand Down

0 comments on commit 73d4ab8

Please sign in to comment.