From 13946da8a6ccb0fc9bb093263e7f72f88e634bcd Mon Sep 17 00:00:00 2001 From: Augustin Nesson Date: Tue, 25 Jun 2024 17:10:12 +0200 Subject: [PATCH] test: fix end-to-end test on product types discovery with earth_search --- tests/test_end_to_end.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_end_to_end.py b/tests/test_end_to_end.py index c615a1550..424cd0699 100644 --- a/tests/test_end_to_end.py +++ b/tests/test_end_to_end.py @@ -701,20 +701,20 @@ def test_end_to_end_discover_product_types_earth_search(self): provider = "earth_search" ext_product_types_conf = self.eodag.discover_product_types(provider=provider) self.assertEqual( - "sentinel-s2-l1c", - ext_product_types_conf[provider]["providers_config"]["sentinel-s2-l1c"][ + "sentinel-2-l1c", + ext_product_types_conf[provider]["providers_config"]["sentinel-2-l1c"][ "productType" ], ) self.assertEqual( - "Sentinel 2 L1C", - ext_product_types_conf[provider]["product_types_config"]["sentinel-s2-l1c"][ + "Sentinel-2 Level-1C", + ext_product_types_conf[provider]["product_types_config"]["sentinel-2-l1c"][ "title" ], ) self.assertEqual( "proprietary", - ext_product_types_conf[provider]["product_types_config"]["sentinel-s2-l1c"][ + ext_product_types_conf[provider]["product_types_config"]["sentinel-2-l1c"][ "license" ], )