@@ -92,7 +92,7 @@ def narrow_unicode_build(test): # pragma: no cover
92
92
message = message ,
93
93
subject = "ipv4" ,
94
94
description = (
95
- "leading zeroes should be rejected, as they are treated as octals"
95
+ "leading zeroes are rejected, as they are treated as octals"
96
96
),
97
97
)
98
98
else :
@@ -520,22 +520,38 @@ def leap_second(test):
520
520
subject = "dynamicRef" ,
521
521
description = "The recursive part is not valid against the root" ,
522
522
)(test )
523
+ or skip (
524
+ message = "dynamicRef support isn't fully working yet." ,
525
+ subject = "dynamicRef" ,
526
+ description = "incorrect extended schema" ,
527
+ case_description = (
528
+ "$ref and $dynamicAnchor are independent of order - "
529
+ "$defs first"
530
+ ),
531
+ )(test )
532
+ or skip (
533
+ message = "dynamicRef support isn't fully working yet." ,
534
+ subject = "dynamicRef" ,
535
+ description = "correct extended schema" ,
536
+ case_description = (
537
+ "$ref and $dynamicAnchor are independent of order - "
538
+ "$defs first"
539
+ ),
540
+ )(test )
523
541
or skip (
524
542
message = "dynamicRef support isn't fully working yet." ,
525
543
subject = "dynamicRef" ,
526
544
description = "correct extended schema" ,
527
545
case_description = (
528
- "Tests for implementation dynamic anchor and reference link. "
529
- "Reference should be independent of any possible ordering."
546
+ "$ref and $dynamicAnchor are independent of order - $ref first"
530
547
),
531
548
)(test )
532
549
or skip (
533
550
message = "dynamicRef support isn't fully working yet." ,
534
551
subject = "dynamicRef" ,
535
552
description = "incorrect extended schema" ,
536
553
case_description = (
537
- "Tests for implementation dynamic anchor and reference link. "
538
- "Reference should be independent of any possible ordering."
554
+ "$ref and $dynamicAnchor are independent of order - $ref first"
539
555
),
540
556
)(test )
541
557
or skip (
0 commit comments