Skip to content

Commit

Permalink
pseudo-inv: adopt tests to new selector type
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Aug 18, 2020
1 parent 48a6d2c commit c3217cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@ def test_gstools_variogram(model):
def test_pseudo_2d(model):
# test data
data = np.array([[0.0, 0.0, 1.0], [0.0, 0.0, 3.0], [1.0, 0.0, 6.0]])
for p_type in [1, 2, 3]:
for p_type in ["pinv", "pinv2", "pinvh"]:
# create the krige field
krige = model(
data[:, 0],
Expand All @@ -2916,7 +2916,7 @@ def test_pseudo_2d(model):
def test_pseudo_3d(model):
# test data
data = np.array([[0.0, 0.0, 0.0, 1.0], [0.0, 0.0, 0.0, 3.0], [1.0, 0.0, 0.0, 6.0]])
for p_type in [1, 2, 3]:
for p_type in ["pinv", "pinv2", "pinvh"]:
# create the krige field
krige = model(
data[:, 0],
Expand Down

0 comments on commit c3217cf

Please sign in to comment.