From c5c740d6096fc52f739f57a5934c3e015b4f4bcd Mon Sep 17 00:00:00 2001 From: Matthew Hanson Date: Wed, 19 Dec 2018 16:28:40 -0500 Subject: [PATCH] fix failing test based on landsat catalog id which changed --- test/test_thing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_thing.py b/test/test_thing.py index 0ea14ab..117e5f2 100644 --- a/test/test_thing.py +++ b/test/test_thing.py @@ -49,7 +49,7 @@ def test_open(self): def test_open_remote(self): thing = Thing.open('https://landsat-stac.s3.amazonaws.com/catalog.json') - assert(thing.id == 'landsat') + assert(thing.id == 'landsat-stac') assert(len(thing.data['links']) == 3) def test_open_missing_remote(self):