Changeset 27747


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

BUG: Fix for pickle loading error

Location:
issm/trunk-jpl/test/NightlyRun
Files:
3 edited

Legend:

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

    r26842 r27747  
    1515# Load precomputed mesh
    1616with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file:
    17     md.mesh = pickle.load(slc_test_mesh_file)
     17    md.mesh = pickle.load(slc_test_mesh_file, encoding='latin1')
    1818
    1919# Geometry for the bed, arbitrary thickness of 100
  • issm/trunk-jpl/test/NightlyRun/test2005.py

    r26842 r27747  
    1616# Load precomputed mesh
    1717with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file:
    18     md.mesh = pickle.load(slc_test_mesh_file)
     18    md.mesh = pickle.load(slc_test_mesh_file, encoding='latin1')
    1919
    2020# Geometry for the bed, arbitrary thickness of 100
  • issm/trunk-jpl/test/NightlyRun/test2010.py

    r26842 r27747  
    1515# Load precomputed mesh
    1616with open('../Data/SlcTestMesh.pkl', 'rb') as slc_test_mesh_file:
    17     md.mesh = pickle.load(slc_test_mesh_file)
     17    md.mesh = pickle.load(slc_test_mesh_file, encoding='latin1')
    1818
    1919# Geometry for the bed, arbitrary thickness of 100
Note: See TracChangeset for help on using the changeset viewer.