Skip to content

Commit

Permalink
fixup rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cbegeman committed Oct 16, 2023
1 parent 4636254 commit d299637
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compass/ocean/tests/drying_slope/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from compass.ocean.tests.drying_slope.decomp import Decomp
from compass.ocean.tests.drying_slope.convergence import Convergence
from compass.ocean.tests.drying_slope.decomp import Decomp
from compass.ocean.tests.drying_slope.default import Default
from compass.ocean.tests.drying_slope.loglaw import LogLaw
from compass.testgroup import TestGroup
Expand Down
8 changes: 7 additions & 1 deletion compass/ocean/tests/drying_slope/decomp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ class Decomp(TestCase):
----------
resolution : str
The resolution of the test case
coord_type : str
The type of vertical coordinate (``sigma``, ``single_layer``, etc.)
"""

def __init__(self, test_group, resolution, coord_type):
def __init__(self, test_group, resolution, coord_type, method):
"""
Create the test case
Expand All @@ -29,6 +32,9 @@ def __init__(self, test_group, resolution, coord_type):
coord_type : str
The type of vertical coordinate (``sigma``, ``single_layer``)
method : str
The type of wetting-and-drying algorithm
"""
name = 'decomp'
self.resolution = resolution
Expand Down

0 comments on commit d299637

Please sign in to comment.