Skip to content

Commit

Permalink
fix: correct unreasonable value during test
Browse files Browse the repository at this point in the history
Change max symbol len from 8 to 12 since that the current
allow value range is 11-33, and 8 will make test fail after we
adding value range constrain into the setting schema file.
  • Loading branch information
wdhongtw committed Jul 2, 2024
1 parent ea02754 commit 9317af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ibus-chewing-engine-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ gint main(gint argc, gchar **argv) {
mkdg_log_set_level(DEBUG);
engine = ibus_chewing_engine_new();
ibus_chewing_pre_edit_save_property_int(engine->icPreEdit,
"max-chi-symbol-len", 8);
"max-chi-symbol-len", 12);
ibus_chewing_pre_edit_set_apply_property_boolean(engine->icPreEdit,
"plain-zhuyin", FALSE);

Expand Down

0 comments on commit 9317af7

Please sign in to comment.