Skip to content

Commit

Permalink
More PEP8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanheerdegen committed May 13, 2020
1 parent 0ea392c commit 2c79b0b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/models/test_mitgcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
},
"parm04": {
"usingcartesiangrid": True,
"delx": [ 20000. ] * 62,
"dely": [ 20000. ] * 62,
"delx": [20000.] * 62,
"dely": [20000.] * 62,
"xgorigin": -20000.0,
"ygorigin": -20000.0,
"delr": 5000.0
Expand Down Expand Up @@ -119,13 +119,13 @@ def teardown_module(module):

def make_pickup_names(istep):

return ['pickup.{:010d}.001.001.{}'.format(istep,
type) for type in ['data', 'meta']]
return ['pickup.{:010d}.001.001.{}'.format(istep, type)
for type in ['data', 'meta']]


def test_make_pickup_names():
assert(make_pickup_names(10) == ['pickup.0000000010.001.001.data',
'pickup.0000000010.001.001.meta' ])
assert(make_pickup_names(10) == ['pickup.0000000010.001.001.data',
'pickup.0000000010.001.001.meta'])

# These are integration tests. They have an undesirable dependence on each
# other. It would be possible to make them independent, but then they'd
Expand Down

0 comments on commit 2c79b0b

Please sign in to comment.