Skip to content

Commit 7eab138

Browse files
committed
Fix indentation based on uncrustify results
1 parent 0ec2d66 commit 7eab138

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/utests/types/string.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -845,24 +845,24 @@ test_data_xml(void **state)
845845

846846
/* Unicode block test 6 - Basic Latin, Latin-1 Supplement, and Latin Extended-A */
847847
schema = MODULE_CREATE_YANG("T_UB_6", "leaf port {type string {"
848-
" pattern '[\\p{IsBasicLatin}\\p{IsLatin-1Supplement}\\p{IsLatinExtended-A}]+';"
849-
"}} ");
848+
" pattern '[\\p{IsBasicLatin}\\p{IsLatin-1Supplement}\\p{IsLatinExtended-A}]+';"
849+
"}} ");
850850
UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL);
851851
TEST_SUCCESS_XML("T_UB_6", "Árvíztűrő tükörfúrógép!", STRING, "Árvíztűrő tükörfúrógép!");
852852

853853
/* Unicode block test 7 - Unknown Unicode block */
854854
schema = MODULE_CREATE_YANG("T_UB_7", "leaf port {type string { pattern '\\p{IsUnknownUnicodeBlock}+';} } ");
855855
UTEST_INVALID_MODULE(schema, LYS_IN_YANG, NULL, LY_EVALID);
856856
CHECK_LOG_CTX("Regular expression \"\\p{IsUnknownUnicodeBlock}+\" "
857-
"is not valid (\"UnknownUnicodeBlock}+\": unknown block name).", "/T_UB_7:port", 0);
857+
"is not valid (\"UnknownUnicodeBlock}+\": unknown block name).", "/T_UB_7:port", 0);
858858

859859
/* Unicode block test 8 - Unknown Unicode block with Basic Latin */
860860
schema = MODULE_CREATE_YANG("T_UB_8", "leaf port {type string { "
861-
" pattern '[\\p{IsBasicLatin}\\p{IsUnknownUnicodeBlock}]+';"
862-
"}} ");
861+
" pattern '[\\p{IsBasicLatin}\\p{IsUnknownUnicodeBlock}]+';"
862+
"}} ");
863863
UTEST_INVALID_MODULE(schema, LYS_IN_YANG, NULL, LY_EVALID);
864864
CHECK_LOG_CTX("Regular expression \"[\\p{IsBasicLatin}\\p{IsUnknownUnicodeBlock}]+\" "
865-
"is not valid (\"UnknownUnicodeBlock}]+\": unknown block name).", "/T_UB_8:port", 0);
865+
"is not valid (\"UnknownUnicodeBlock}]+\": unknown block name).", "/T_UB_8:port", 0);
866866
}
867867

868868
static void

0 commit comments

Comments
 (0)