Fixed failing FTS5 test, release as 0.6.1

This commit is contained in:
Simon Willison 2018-08-12 17:48:43 -07:00
commit 8e2a313c1e
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io
import os
VERSION = "0.6"
VERSION = "0.6.1"
def get_long_description():

View file

@ -25,7 +25,7 @@ def test_enable_fts(fresh_db):
def test_populate_fts(fresh_db):
table = fresh_db["populatable"]
table.insert(search_records[0])
table.enable_fts(["text", "country"])
table.enable_fts(["text", "country"], fts_version="FTS4")
assert [] == table.search("trash pandas")
table.insert(search_records[1])
assert [] == table.search("trash pandas")