Skip to content

Commit ffed23b

Browse files
committed
test(test_plates_generator): fit to previsou changes
1 parent 3c4c37f commit ffed23b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_plates_generator.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test_dst_plate_generator(self):
220220
expected_plate = Plate.from_file(
221221
os_path.join(self.REF_FOLDER, 'destination_plate_1.json')
222222
)
223-
self.assertEqual(dest_plates['1'], expected_plate)
223+
self.assertEqual(dest_plates[0], expected_plate)
224224

225225
def test_dst_plate_generator_OutOfPlate(self):
226226
_, values_df = input_importer(
@@ -240,8 +240,8 @@ def test_dst_plate_generator_OutOfPlate(self):
240240
expected_plate_2 = Plate.from_file(
241241
os_path.join(self.REF_FOLDER, 'dst_plate_2.json')
242242
)
243-
self.assertEqual(dest_plates['1'], expected_plate_1)
244-
self.assertEqual(dest_plates['2'], expected_plate_2)
243+
self.assertEqual(dest_plates[0], expected_plate_1)
244+
self.assertEqual(dest_plates[1], expected_plate_2)
245245

246246

247247
class TestPlate(TestCase):
@@ -629,4 +629,4 @@ def test_plate_merge_new_plate(self):
629629
self.assertDictEqual(
630630
merged[i],
631631
ref_plate_dicts[i]
632-
)
632+
)

0 commit comments

Comments
 (0)