Skip to content

Commit 490ad20

Browse files
committed
Fix names in unit tests
1 parent da4d714 commit 490ad20

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tests/test_latlon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def fix_dim(self):
2222
return 2
2323

2424

25-
class TestCondition(unittest.TestCase):
25+
class TestLatLon(unittest.TestCase):
2626
def setUp(self):
2727
self.cmod = gs.Gaussian(
2828
latlon=True, var=2, len_scale=777, rescale=gs.EARTH_RADIUS
File renamed without changes.

tests/test_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import gstools as gs
88

99

10-
class TestSRF(unittest.TestCase):
10+
class TestTransform(unittest.TestCase):
1111
def setUp(self):
1212
self.cov_model = gs.Gaussian(dim=2, var=1.5, len_scale=4.0)
1313
self.mean = 0.3

tests/test_variogram_structured.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import gstools as gs
1111

1212

13-
class TestVariogramstructured(unittest.TestCase):
13+
class TestVariogramStructured(unittest.TestCase):
1414
def setUp(self):
1515
pass
1616

0 commit comments

Comments
 (0)