Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbradley committed Jan 18, 2024
1 parent e6ac939 commit 7b31c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion andromeda/tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def fake_get_path():

self.assertEqual(weights.keys(), set(["R1", "B1", "G1"]))
self.assertEqual(len(image_coordinates), 3)
self.assertEqual(image_coordinates[0].keys(), set(["x", "y", "label", "url"]))
self.assertEqual(image_coordinates[0].keys(), set(["x", "y", "label", "url", "R1", "B1", "G1"]))
self.assertEqual(image_coordinates[0]["label"], "p1")
self.assertEqual(image_coordinates[0]["url"], "https://example.com/p1.jpg")
self.assertEqual(image_coordinates[1]["url"], "")
Expand Down

0 comments on commit 7b31c2d

Please sign in to comment.