diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-10-29 14:31:39 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-10-29 14:31:39 +0100 |
commit | 9787d25977f5679b2636fb7d8cb2608cff7ad526 (patch) | |
tree | d32e07ab7479e4b93b2728634fbc747549688e88 /tests/test_collection.py | |
parent | d04375c56884fa47b1b96d63aa48f7e8dbf18ed3 (diff) |
Start storing data in value slots for sorting and range search.
Diffstat (limited to 'tests/test_collection.py')
-rw-r--r-- | tests/test_collection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_collection.py b/tests/test_collection.py index bbc35ba..f3e06da 100644 --- a/tests/test_collection.py +++ b/tests/test_collection.py @@ -272,7 +272,7 @@ class testComplexCollection(unittest.TestCase): ) self.assertEqual(len(self.collection.settings['fields']), 9) self.assertIsNotNone(self.collection.stemmer) - self.assertEqual(len(self.collection.indexed_fields), 6) + self.assertEqual(len(self.collection.indexed_fields), 7) def test_index(self): self.collection.update_cache() |