Index: /issm/trunk-jpl/test/NightlyRun/test2003.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2003.py	(revision 22148)
+++ /issm/trunk-jpl/test/NightlyRun/test2003.py	(revision 22149)
@@ -25,5 +25,5 @@
 late = sum(md.mesh.lat[md.mesh.elements - 1],1) / 3
 longe = sum(md.mesh.long[md.mesh.elements - 1],1) / 3
-pos = np.intersect1d(np.where(late < -75), np.where(longe < 0))
+pos = np.intersect1d(np.array(np.where(late < -75)), np.array(np.where(longe < 0)))
 md.slr.deltathickness[pos] = -1
 
Index: /issm/trunk-jpl/test/NightlyRun/test2010.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2010.py	(revision 22148)
+++ /issm/trunk-jpl/test/NightlyRun/test2010.py	(revision 22149)
@@ -21,5 +21,5 @@
 
 md.slr.deltathickness = np.zeros((md.mesh.numberofelements,))
-pos = np.intersect1d(np.where(late < -75), np.where(longe > 0))
+pos = np.intersect1d(np.array(np.where(late < -75)), np.array(np.where(longe > 0)))
 #python does not include last element in array slices, (6:7) -> [5:7]
 md.slr.deltathickness[pos[5:7]] = -1
Index: /issm/trunk-jpl/test/NightlyRun/test2110.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2110.py	(revision 22148)
+++ /issm/trunk-jpl/test/NightlyRun/test2110.py	(revision 22149)
@@ -7,9 +7,6 @@
 from solve import *
 from roundmesh import *
-#from gmshplanet import *
 from love_numbers import *
 from paterson import *
-#from maskpsl import *
-#from gmtmask import *
 
 #mesh earth: 
