File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -541,7 +541,7 @@ def test_that_es_mda_on_poly_case_matches_snapshot(snapshot):
541541 ensemble_data .columns .name = None
542542 ensemble_data .index .name = "Realization"
543543 ensemble_data = ensemble_data .sort_index (axis = 1 )
544- data .append (ensemble_data )
544+ data .append (ensemble_data . astype ( "float32" ) )
545545 result = pd .concat (
546546 data ,
547547 keys = [f"iter-{ iter_ } " for iter_ in range (len (data ))],
@@ -581,7 +581,7 @@ def test_that_enif_on_poly_case_matches_snapshot(snapshot):
581581 ensemble_data .columns .name = None
582582 ensemble_data .index .name = "Realization"
583583 ensemble_data = ensemble_data .sort_index (axis = 1 )
584- data .append (ensemble_data )
584+ data .append (ensemble_data . astype ( "float32" ) )
585585 result = pd .concat (
586586 data ,
587587 keys = [f"iter-{ i } " for i in range (len (data ))],
You can’t perform that action at this time.
0 commit comments