Skip to content

Commit

Permalink
Fix styling error in test_scmi tests
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Oct 31, 2018
1 parent 2ad06ed commit 0cf4fe1
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions satpy/tests/writer_tests/test_scmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def test_basic_numbered_1_tile(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=100,
y_size=200,
area_extent=(-1000., -1500., 1000., 1500.),
Expand Down Expand Up @@ -101,7 +102,8 @@ def test_basic_numbered_tiles(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=100,
y_size=200,
area_extent=(-1000., -1500., 1000., 1500.),
Expand Down Expand Up @@ -133,7 +135,8 @@ def test_basic_lettered_tiles(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=1000,
y_size=2000,
area_extent=(-1000000., -1500000., 1000000., 1500000.),
Expand Down Expand Up @@ -165,7 +168,8 @@ def test_lettered_tiles_no_fit(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=1000,
y_size=2000,
area_extent=(4000000., 5000000., 5000000., 6000000.),
Expand Down Expand Up @@ -198,7 +202,8 @@ def test_lettered_tiles_bad_filename(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=1000,
y_size=2000,
area_extent=(-1000000., -1500000., 1000000., 1500000.),
Expand Down Expand Up @@ -233,7 +238,8 @@ def test_basic_numbered_tiles_rgb(self):
'test',
'test',
'test',
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. +lat_0=25 +lat_1=25 +units=m +no_defs'),
proj_dict=proj4_str_to_dict('+proj=lcc +datum=WGS84 +ellps=WGS84 +lon_0=-95. '
'+lat_0=25 +lat_1=25 +units=m +no_defs'),
x_size=100,
y_size=200,
area_extent=(-1000., -1500., 1000., 1500.),
Expand Down

0 comments on commit 0cf4fe1

Please sign in to comment.