Index: wflow-py/UnitTests/Testwflow_sbm.py =================================================================== diff -u -rfa4daa7879ffb68b5ef714c2604a0f0bbc691dea -rfef080bf671f3effa3e3947aafa4437fff6098cd --- wflow-py/UnitTests/Testwflow_sbm.py (.../Testwflow_sbm.py) (revision fa4daa7879ffb68b5ef714c2604a0f0bbc691dea) +++ wflow-py/UnitTests/Testwflow_sbm.py (.../Testwflow_sbm.py) (revision fef080bf671f3effa3e3947aafa4437fff6098cd) @@ -1,7 +1,7 @@ __author__ = 'schelle' import unittest -import wflow.wflow_sceleton as wf +import wflow.wflow_sbm as wf import os """ Run sceleton for 10 steps and checks if the outcome is approx that of the reference run @@ -32,6 +32,9 @@ dynModelFw._runResume() # gets the state variables for ts in range(startTime,stopTime): + dynModelFw.wf_setValues('P', 10.0) + dynModelFw.wf_setValues('PET', 2.0) + dynModelFw.wf_setValues('TEMP', 10.0) dynModelFw._runDynamic(ts,ts) # runs for all timesteps dynModelFw.logger.info("Doing step: " + str(ts)) dynModelFw._runSuspend() # saves the state variables