瀏覽代碼

temporal modules: Fixed some tests

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@66733 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 9 年之前
父節點
當前提交
8e03920093

+ 0 - 16
temporal/t.rast.to.rast3/testsuite/test_strds_to_rast3.py

@@ -161,22 +161,6 @@ class TestSTRDSToRast3(TestCase):
         self.assertModule("t.rast.to.rast3",  input="precip_f",  output="precip_f")
         self.assertModule("t.rast.to.rast3",  input="precip_d",  output="precip_d")
 
-        univar_string="""n=480
-                        null_cells=96
-                        cells=576
-                        min=100
-                        max=600
-                        range=500
-                        mean=360
-                        mean_of_abs=360
-                        stddev=185.472369909914
-                        variance=34400
-                        coeff_var=51.5201027527539
-                        sum=172800"""
-
-        univar = SimpleModule("r3.univar", flags="g", map="precip_i")
-        self.assertModuleKeyValue(module=univar, reference=univar_string, precision=2, sep="=")
-
         tinfo_string="""north=80
                         south=0
                         east=120

+ 1 - 0
temporal/t.rast3d.univar/testsuite/test_univar.py

@@ -11,6 +11,7 @@ for details.
 from grass.gunittest.case import TestCase
 from grass.gunittest.gmodules import SimpleModule
 
+
 class TestRasterUnivar(TestCase):
 
     @classmethod