[GRASS-SVN] r63615 - grass/trunk/temporal/t.connect/testsuite
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Dec 19 10:11:42 PST 2014
Author: martinl
Date: 2014-12-19 10:11:42 -0800 (Fri, 19 Dec 2014)
New Revision: 63615
Modified:
grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py
Log:
bugfix 3draster -> raster_3d
Modified: grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py
===================================================================
--- grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py 2014-12-19 17:59:14 UTC (rev 63614)
+++ grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py 2014-12-19 18:11:42 UTC (rev 63615)
@@ -28,7 +28,7 @@
cls.runModule("t.create", type="str3ds", temporaltype="absolute",
output="A", title="A test3d", description="A test3d")
- cls.runModule("t.register", flags="i", type="3draster", input="A",
+ cls.runModule("t.register", flags="i", type="raster_3d", input="A",
maps="a1,a2,a3",
start="2001-01-01", increment="%i months"%i)
@@ -165,7 +165,7 @@
start_time=2001-01-01 00:00:00
end_time=2001-02-01 00:00:00 """
- info = SimpleModule("t.info", flags="g", type="3draster", input="a1 at test3d1")
+ info = SimpleModule("t.info", flags="g", type="raster_3d", input="a1 at test3d1")
self.assertModuleKeyValue(module=info, reference=tinfo_string, precision=2, sep="=")
tinfo_string="""id=a1 at test3d2
@@ -175,7 +175,7 @@
start_time=2001-01-01 00:00:00
end_time=2001-03-01 00:00:00 """
- info = SimpleModule("t.info", flags="g", type="3draster", input="a1 at test3d2")
+ info = SimpleModule("t.info", flags="g", type="raster_3d", input="a1 at test3d2")
self.assertModuleKeyValue(module=info, reference=tinfo_string, precision=2, sep="=")
tinfo_string="""id=a1 at test3d3
@@ -185,7 +185,7 @@
start_time=2001-01-01 00:00:00
end_time=2001-04-01 00:00:00 """
- info = SimpleModule("t.info", flags="g", type="3draster", input="a1 at test3d3")
+ info = SimpleModule("t.info", flags="g", type="raster_3d", input="a1 at test3d3")
self.assertModuleKeyValue(module=info, reference=tinfo_string, precision=2, sep="=")
tinfo_string="""id=a1 at test3d4
@@ -195,7 +195,7 @@
start_time=2001-01-01 00:00:00
end_time=2001-05-01 00:00:00 """
- info = SimpleModule("t.info", flags="g", type="3draster", input="a1 at test3d4")
+ info = SimpleModule("t.info", flags="g", type="raster_3d", input="a1 at test3d4")
self.assertModuleKeyValue(module=info, reference=tinfo_string, precision=2, sep="=")
if __name__ == '__main__':
More information about the grass-commit
mailing list