Changeset 27746


Ignore:
Timestamp:
05/12/23 14:16:05 (23 months ago)
Author:
jdquinn
Message:

BUG: Testing fix for pickle loading error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test2002.py

    r27745 r27746  
    2424
    2525# Load precomputed mesh
    26 with open('../Data/SlcTestMesh.pkl', 'rb', encoding='latin1') as slc_test_mesh_file:
    27     md.mesh = pickle.load(slc_test_mesh_file)
     26with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file:
     27    md.mesh = pickle.load(slc_test_mesh_file, encoding='latin1')
    2828
    2929# Geometry for the bed, arbitrary thickness of 100
Note: See TracChangeset for help on using the changeset viewer.