Commit ffed23b 1 parent 3c4c37f commit ffed23b Copy full SHA for ffed23b
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ def test_dst_plate_generator(self):
220
220
expected_plate = Plate .from_file (
221
221
os_path .join (self .REF_FOLDER , 'destination_plate_1.json' )
222
222
)
223
- self .assertEqual (dest_plates ['1' ], expected_plate )
223
+ self .assertEqual (dest_plates [0 ], expected_plate )
224
224
225
225
def test_dst_plate_generator_OutOfPlate (self ):
226
226
_ , values_df = input_importer (
@@ -240,8 +240,8 @@ def test_dst_plate_generator_OutOfPlate(self):
240
240
expected_plate_2 = Plate .from_file (
241
241
os_path .join (self .REF_FOLDER , 'dst_plate_2.json' )
242
242
)
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 )
245
245
246
246
247
247
class TestPlate (TestCase ):
@@ -629,4 +629,4 @@ def test_plate_merge_new_plate(self):
629
629
self .assertDictEqual (
630
630
merged [i ],
631
631
ref_plate_dicts [i ]
632
- )
632
+ )
You can’t perform that action at this time.
0 commit comments