Index: /issm/trunk-jpl/test/NightlyRun/test1104.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1104.py	(revision 22867)
+++ /issm/trunk-jpl/test/NightlyRun/test1104.py	(revision 22868)
@@ -50,6 +50,6 @@
 	md=solve(md,'Stressbalance')
 	pos=np.where(np.logical_or.reduce((md.mesh.x==0.,md.mesh.y==0.,md.mesh.x==np.max(md.mesh.x),md.mesh.y==np.max(md.mesh.y))))
-	md.stressbalance.spcvx[pos]=md.results.StressbalanceSolution.Vx[pos]
-	md.stressbalance.spcvy[pos]=md.results.StressbalanceSolution.Vy[pos]
+	md.stressbalance.spcvx[pos]=md.results.StressbalanceSolution.Vx[pos][:,0]
+	md.stressbalance.spcvy[pos]=md.results.StressbalanceSolution.Vy[pos][:,0]
 	md.stressbalance.vertex_pairing=np.empty((0,2),int)
 	md=setflowequation(md,'FS','all')
Index: /issm/trunk-jpl/test/NightlyRun/test243.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test243.py	(revision 22867)
+++ /issm/trunk-jpl/test/NightlyRun/test243.py	(revision 22868)
@@ -1,5 +1,6 @@
 #Test Name: SquareShelfSMBGemb
 import numpy as np
-import scipy.io as spio
+import scipy as sci
+import sci.io as spio
 from model import *
 from socket import gethostname
@@ -25,5 +26,5 @@
 inputs = spio.loadmat('../Data/gemb_input.mat',squeeze_me=True)
 
-#setup the inputs: 
+#setup the inputs:
 md.smb.Ta = np.append(np.tile(np.conjugate(inputs['Ta0']),(md.mesh.numberofelements,1)),np.conjugate([inputs['dateN']]),axis=0)
 md.smb.V = np.append(np.tile(np.conjugate(inputs['V0']),(md.mesh.numberofelements,1)),np.conjugate([inputs['dateN']]),axis=0)
@@ -42,10 +43,10 @@
 md.smb.requested_outputs = ['SmbDz','SmbT','SmbD','SmbRe','SmbGdn','SmbGsp','SmbEC','SmbA','SmbMassBalance','SmbMAdd','SmbDzAdd','SmbFAC']
 
-#only run smb core: 
+#only run smb core:
 md.transient.isstressbalance = 0
 md.transient.ismasstransport = 0
 md.transient.isthermal = 0
 
-#time stepping: 
+#time stepping:
 md.timestepping.start_time = 1965.
 md.timestepping.final_time = 1966.
Index: /issm/trunk-jpl/test/NightlyRun/test701.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test701.py	(revision 22867)
+++ /issm/trunk-jpl/test/NightlyRun/test701.py	(revision 22868)
@@ -1,5 +1,6 @@
 #Test Name: FlowbandFSshelf
 import numpy as np
-from scipy.interpolate import interp1d
+import scipy as sci
+from sci.interpolate import interp1d
 from model import *
 from solve import *
Index: /issm/trunk-jpl/test/NightlyRun/test703.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test703.py	(revision 22867)
+++ /issm/trunk-jpl/test/NightlyRun/test703.py	(revision 22868)
@@ -1,5 +1,6 @@
 #Test Name: FlowbandFSsheetshelfTrans
 import numpy as np
-from scipy.interpolate import interp1d
+import scipy as sci
+from sci.interpolate import interp1d
 from model import  *
 from setflowequation import  *
