@@ -1056,22 +1056,22 @@ def test_observations_get_cloud_uris_no_duplicates(self, msa_product_table, rese
10561056 def test_catalogs_collection (self ):
10571057 # Default collection should be HSC
10581058 c = Catalogs ()
1059- assert c .collection . name == "hsc"
1059+ assert c .collection == "hsc"
10601060 assert c .catalog == "dbo.SumMagAper2CatView"
10611061
10621062 # Initialize with a different collection
10631063 c = Catalogs (collection = "gaiadr3" )
1064- assert c .collection . name == "gaiadr3"
1064+ assert c .collection == "gaiadr3"
10651065 assert c .catalog == "dbo.gaia_source"
10661066
10671067 # Initialize with a different collection and catalog
10681068 c = Catalogs (collection = "ullyses" , catalog = "publications" )
1069- assert c .collection . name == "ullyses"
1069+ assert c .collection == "ullyses"
10701070 assert c .catalog == "dbo.publications"
10711071
10721072 # Set the collection
10731073 c .collection = "caom"
1074- assert c .collection . name == "caom"
1074+ assert c .collection == "caom"
10751075 assert c .catalog == "dbo.obspointing"
10761076
10771077 def test_catalogs_get_collections (self ):
@@ -1229,7 +1229,7 @@ def test_catalogs_query_region(self):
12291229
12301230 # Region search with circle
12311231 result = Catalogs .query_region (
1232- collection = "caom" , region = "CIRCLE ICRS 18.85 -6.95 0.1 " , limit = 5 , select_cols = select_cols
1232+ collection = "caom" , region = "CIRCLE ICRS 18.85 -6.95 0.01 " , limit = 5 , select_cols = select_cols
12331233 )
12341234 assert isinstance (result , Table )
12351235 assert len (result ) <= 5
0 commit comments