Skip to content

Commit

Permalink
- changes due to refactored function in grid.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaussin committed Feb 5, 2019
1 parent e90f3e2 commit 560f626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_grid.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from merra.grid import MERRACellgrid
from merra.grid import create_merra_cell_grid

class Test(unittest.TestCase):
"""
Expand All @@ -10,7 +10,7 @@ def test_MERRACellgrid(self):
Test if the grid remains homogenous.
:return:
"""
grid = MERRACellgrid()
grid = create_merra_cell_grid()
assert grid.activegpis.size == 207936
assert grid.activegpis[159290] == 159290
assert grid.activearrcell[159290] == 1431
Expand Down

0 comments on commit 560f626

Please sign in to comment.