random order caused test to fail

rather a workaround, but since HDF5 is coming...
This commit is contained in:
Martin Diehl 2018-12-30 11:41:22 +01:00
parent c8dc2cb137
commit a992b8b1f5
1 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
import os,sys,math
import numpy as np
from optparse import OptionParser
from collections import OrderedDict
import damask
scriptName = os.path.splitext(os.path.basename(__file__))[0]
@ -63,10 +64,10 @@ for name in filenames:
# ------------------------------------------ sanity checks ----------------------------------------
items = {
items = OrderedDict({
'strain': {'dim': 9, 'shape': [3,3], 'labels':options.strain, 'active':[], 'column': []},
'stress': {'dim': 9, 'shape': [3,3], 'labels':options.stress, 'active':[], 'column': []},
}
})
errors = []
remarks = []