Skip to content

Commit 8a86e61

Browse files
committed
Update tests for correct band default
1 parent 66bc72b commit 8a86e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_landsat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_download_correct_zip(self, mock_downloader):
109109
args = ['download', 'LC80010092015051LGN00', '-d', self.mock_path]
110110
output = landsat.main(self.parser.parse_args(args))
111111
mock_downloader.assert_called_with(download_dir=self.mock_path, usgs_pass=None, usgs_user=None)
112-
mock_downloader.return_value.download.assert_called_with(['LC80010092015051LGN00'], [])
112+
mock_downloader.return_value.download.assert_called_with(['LC80010092015051LGN00'], None)
113113
self.assertEquals(output, ['Download Completed', 0])
114114

115115
@mock.patch('landsat.landsat.process_image')

0 commit comments

Comments
 (0)