We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677f1aa commit 7ac10c2Copy full SHA for 7ac10c2
src/stac_api_validator/validations.py
@@ -503,8 +503,9 @@ def validate_features(
503
504
try:
505
conformance_json = r_conformance.json()
506
- if set(root_body.get("conformsTo", [])) == set(
507
- conformance_json["conformsTo"]
+ if not (
+ set(root_body.get("conformsTo", []))
508
+ == set(conformance_json["conformsTo"])
509
):
510
warnings.append(
511
"Landing Page conforms to and conformance conformsTo must be the same",
0 commit comments