Skip to content

Commit

Permalink
Fix test using old name for test utility FakeReader
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed May 6, 2019
1 parent 3a751db commit e256d2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satpy/tests/test_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -1262,9 +1262,9 @@ def test_load_comp18_2(self, cri, cl):
"""
import satpy.scene
from satpy.tests.utils import create_fake_reader, test_composites
from satpy.tests.utils import FakeReader, test_composites
from satpy import DatasetID
cri.return_value = {'fake_reader': create_fake_reader(
cri.return_value = {'fake_reader': FakeReader(
'fake_reader', 'fake_sensor')}
comps, mods = test_composites('fake_sensor')
cl.return_value = (comps, mods)
Expand Down

0 comments on commit e256d2c

Please sign in to comment.