Rename the option to create-triggers for FTS.

This commit is contained in:
Amjith Ramanujam 2019-09-02 08:54:49 -07:00
commit d0658fda27
4 changed files with 7 additions and 7 deletions

View file

@ -54,7 +54,7 @@ def test_enable_fts_w_triggers(fresh_db):
table = fresh_db["searchable"]
table.insert(search_records[0])
table.enable_fts(
["text", "country"], fts_version="FTS4", create_update_triggers=True
["text", "country"], fts_version="FTS4", create_triggers=True
)
assert [("tanuki are tricksters", "Japan", "foo")] == table.search("tanuki")
table.insert(search_records[1])