|
@@ -32,7 +32,7 @@ class TestVNet(grass.gunittest.TestCase):
|
|
|
"""Test"""
|
|
|
self.assertModule('v.net', input='streets_wake', points='schools_wake',
|
|
|
output=self.network, operation='connect', threshold=1000)
|
|
|
- topology = dict(points=167, nodes=42136, lines=50080)
|
|
|
+ topology = dict(points=167, nodes=42136, lines=50069)
|
|
|
self.assertVectorFitsTopoInfo(vector=self.network, reference=topology)
|
|
|
layers = read_command('v.category', input=self.network, option='layers').strip()
|
|
|
self.assertEqual(first="1\n2", second=layers, msg="Layers do not match")
|
|
@@ -41,7 +41,7 @@ class TestVNet(grass.gunittest.TestCase):
|
|
|
"""Test"""
|
|
|
self.assertModule('v.net', input='streets_wake', points='schools_wake', flags='s',
|
|
|
output=self.network, operation='connect', threshold=1000)
|
|
|
- topology = dict(points=167, nodes=41969, lines=49913)
|
|
|
+ topology = dict(points=167, nodes=41969, lines=49902)
|
|
|
self.assertVectorFitsTopoInfo(vector=self.network, reference=topology)
|
|
|
|
|
|
|