File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/common/liboptparse/test Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -384,11 +384,13 @@ void test_convenience_accessors (void)
384384 rc = optparse_add_option_table (p , opts );
385385 ok (rc == OPTPARSE_SUCCESS , "register options" );
386386
387- ok (optparse_option_index (p ) == -1 , "optparse_option_index returns -1 before parse" );
387+ ok (optparse_option_index (p ) == -1 ,
388+ "optparse_option_index returns -1 before parse" );
388389 optindex = optparse_parse_args (p , ac , av );
389390 ok (optindex == ac , "parse options, verify optindex" );
390391
391- ok (optparse_option_index (p ) == optindex , "optparse_option_index works after parse" );
392+ ok (optparse_option_index (p ) == optindex ,
393+ "optparse_option_index works after parse" );
392394
393395 /* hasopt
394396 */
You can’t perform that action at this time.
0 commit comments