mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-06 01:40:22 -05:00
test: config: blur: fix test failure; use the correct parsing function
This commit is contained in:
parent
dea10e2e48
commit
046898f1b8
1 changed files with 2 additions and 2 deletions
|
|
@ -774,7 +774,7 @@ test_section_colors_dark(void)
|
|||
&conf.colors_dark.table[i]);
|
||||
}
|
||||
|
||||
test_boolean(&ctx, &parse_section_colors, "blur", &conf.colors_dark.blur);
|
||||
test_boolean(&ctx, &parse_section_colors_dark, "blur", &conf.colors_dark.blur);
|
||||
|
||||
test_invalid_key(&ctx, &parse_section_colors_dark, "256");
|
||||
|
||||
|
|
@ -855,7 +855,7 @@ test_section_colors_light(void)
|
|||
&conf.colors_light.table[i]);
|
||||
}
|
||||
|
||||
test_boolean(&ctx, &parse_section_colors, "blur", &conf.colors_light.blur);
|
||||
test_boolean(&ctx, &parse_section_colors_light, "blur", &conf.colors_light.blur);
|
||||
|
||||
test_invalid_key(&ctx, &parse_section_colors_light, "256");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue