From 45a7ccf97b6e871edb2ea196845b8c1194d4b85a Mon Sep 17 00:00:00 2001 From: Pierre Ducroquet Date: Tue, 5 Mar 2024 11:29:18 +0100 Subject: [PATCH] progress --- tests/test_sql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_sql.py b/tests/test_sql.py index 00e056964..f1357c110 100644 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -1200,14 +1200,14 @@ def test_search_tokens_purge(pub): assert cur.fetchone()[0] == 116 t = data_class() - t.data = {'3': 'foo'} + t.data = {'3': 'foofortokensofcourse'} t.just_created() t.store() cur.execute("SELECT count(*) FROM wcs_search_tokens;") assert cur.fetchone()[0] == 117 - t.data = {'3': 'chaussette'} + t.data = {'3': 'chaussettefortokensofcourse'} t.store() cur.execute("SELECT count(*) FROM wcs_search_tokens;")