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 45ecf55 commit edab6c5Copy full SHA for edab6c5
tests/schema/yang/ietf/ietf-ipfix-psamp.yang
@@ -257,7 +257,7 @@ module ietf-ipfix-psamp {
257
typedef ieNameType {
258
type string {
259
length "1..max";
260
- pattern "\S+";
+ pattern '\S+';
261
}
262
description "Type for Information Element names. Whitespaces
263
are not allowed.";
@@ -277,7 +277,7 @@ module ietf-ipfix-psamp {
277
typedef nameType {
278
279
280
- pattern "\S(.*\S)?";
+ pattern '\S(.*\S)?';
281
282
description "Type for 'name' leafs, which are used to identify
283
specific instances within lists, etc.
0 commit comments