Skip to content

Commit a3b1c5e

Browse files
Per Anderssonmichalvasko
authored andcommitted
Update date for ietf-yang-schema-comparison.yang
1 parent 7581f4a commit a3b1c5e

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

modules/ietf-yang-schema-comparison@2025-10-20.yang renamed to modules/ietf-yang-schema-comparison@2026-02-11.yang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module ietf-yang-schema-comparison {
4444
of the schema nodes are optional and describe changes in all the
4545
statements of a single YANG module.
4646
47-
Copyright (c) 2025 IETF Trust and the persons identified as
47+
Copyright (c) 2026 IETF Trust and the persons identified as
4848
authors of the code. All rights reserved.
4949
5050
Redistribution and use in source and binary forms, with
@@ -69,7 +69,7 @@ module ietf-yang-schema-comparison {
6969
// RFC Ed.: replace XXXX (inc above) with actual RFC number and
7070
// remove this note.
7171

72-
revision 2025-10-20 {
72+
revision 2026-02-11 {
7373
description
7474
"Initial revision.";
7575
reference

src/tree_schema.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,8 +1400,8 @@ lys_compare(const struct ly_ctx *ctx, const struct lys_module *src_mod, const st
14001400
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not found.");
14011401
rc = LY_ENOTFOUND;
14021402
goto cleanup;
1403-
} else if (!cmp_mod->revision || strcmp(cmp_mod->revision, "2025-10-20")) {
1404-
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not in the expected revision \"2025-10-20\".");
1403+
} else if (!cmp_mod->revision || strcmp(cmp_mod->revision, "2026-02-11")) {
1404+
LOGERR(ctx, LY_ENOTFOUND, "Module \"ietf-yang-schema-comparison\" not in the expected revision \"2026-02-11\".");
14051405
rc = LY_ENOTFOUND;
14061406
goto cleanup;
14071407
}

tests/utests/schema_comparison/bc/12 description/description_cmp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"module": "ietf-yang-schema-comparison",
28-
"revision": "2025-10-20",
28+
"revision": "2026-02-11",
2929
"enabled-feature": [
3030
"parsed-schema"
3131
]

tests/utests/schema_comparison/bc/3 pattern/pattern_cmp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"module": "ietf-yang-schema-comparison",
28-
"revision": "2025-10-20",
28+
"revision": "2026-02-11",
2929
"enabled-feature": [
3030
"parsed-schema"
3131
]

tests/utests/schema_comparison/bc/7 must/must_cmp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"module": "ietf-yang-schema-comparison",
28-
"revision": "2025-10-20",
28+
"revision": "2026-02-11",
2929
"enabled-feature": [
3030
"parsed-schema"
3131
]

tests/utests/schema_comparison/bc/8 when/when_cmp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"module": "ietf-yang-schema-comparison",
28-
"revision": "2025-10-20",
28+
"revision": "2026-02-11",
2929
"enabled-feature": [
3030
"parsed-schema"
3131
]

tests/utests/schema_comparison/test_schema_comparison.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ setup_f(void **state)
6060
}
6161

6262
/* load ietf-schema-comparison into both contexts, the module is imported */
63-
if (ly_in_new_filepath(TESTS_SRC "/../modules/ietf-yang-schema-comparison@2025-10-20.yang", 0, &in)) {
63+
if (ly_in_new_filepath(TESTS_SRC "/../modules/ietf-yang-schema-comparison@2026-02-11.yang", 0, &in)) {
6464
return 1;
6565
}
6666
if (lys_parse(st->ctx1, in, LYS_IN_YANG, feats, NULL)) {

0 commit comments

Comments
 (0)