Index: /issm/trunk-jpl/test/NightlyRun/test101.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test101.py	(revision 13069)
+++ /issm/trunk-jpl/test/NightlyRun/test101.py	(revision 13070)
@@ -14,6 +14,6 @@
 md=setflowequation(md,'macayeal','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md.diagnostic.requested_outputs=StressTensorEnum
-md=solve(md,DiagnosticSolutionEnum)
+md.diagnostic.requested_outputs=StressTensorEnum()
+md=solve(md,DiagnosticSolutionEnum())
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/Par/SquareShelfConstrained.py
===================================================================
--- /issm/trunk-jpl/test/Par/SquareShelfConstrained.py	(revision 13069)
+++ /issm/trunk-jpl/test/Par/SquareShelfConstrained.py	(revision 13070)
@@ -2,8 +2,9 @@
 from verbose import *
 import scipy.io as matio
-import InterpFromMeshToMesh2d as im
-from   paterson import  *
+from InterpFromMeshToMesh2d import InterpFromMeshToMesh2d
+from paterson import  *
 from SetIceShelfBC import *
 import inspect
+import os.path
 
 #Start defining model parameters here
@@ -29,6 +30,6 @@
 index=reshape(index.T,(len(index),3),order='F')
 
-md.initialization.vx = im.InterpFromMeshToMesh2d(index, x, y, vx, md.mesh.x, md.mesh.y)
-md.initialization.vy = im.InterpFromMeshToMesh2d(index, x, y, vy, md.mesh.x, md.mesh.y)
+[md.initialization.vx] = InterpFromMeshToMesh2d(index, x, y, vx, md.mesh.x, md.mesh.y)
+[md.initialization.vy] = InterpFromMeshToMesh2d(index, x, y, vy, md.mesh.x, md.mesh.y)
 md.initialization.vz = zeros(md.mesh.numberofvertices)
 md.initialization.pressure = zeros(md.mesh.numberofvertices)
@@ -62,4 +63,4 @@
 #Change name so that no tests have the same name
 if len(inspect.stack()) > 2:
-    md.miscellaneous.name = inspect.stack()[2][1].split('.')[0]
+	md.miscellaneous.name = os.path.basename(inspect.stack()[2][1]).split('.')[0]
 
