Skip to content

Commit

Permalink
Fix names in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LSchueler committed Nov 9, 2021
1 parent da4d714 commit 490ad20
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_latlon.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def fix_dim(self):
return 2


class TestCondition(unittest.TestCase):
class TestLatLon(unittest.TestCase):
def setUp(self):
self.cmod = gs.Gaussian(
latlon=True, var=2, len_scale=777, rescale=gs.EARTH_RADIUS
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import gstools as gs


class TestSRF(unittest.TestCase):
class TestTransform(unittest.TestCase):
def setUp(self):
self.cov_model = gs.Gaussian(dim=2, var=1.5, len_scale=4.0)
self.mean = 0.3
Expand Down
2 changes: 1 addition & 1 deletion tests/test_variogram_structured.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import gstools as gs


class TestVariogramstructured(unittest.TestCase):
class TestVariogramStructured(unittest.TestCase):
def setUp(self):
pass

Expand Down

0 comments on commit 490ad20

Please sign in to comment.