This is an automated email from the ASF dual-hosted git repository.
bessbd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 67061db Set wait_for_built_index=True for 17-multi-type-value-test.py
67061db is described below
commit 67061dbba40ab83ba6bb04d2af2988331f000a92
Author: Bessenyei Balázs Donát <[email protected]>
AuthorDate: Tue Mar 16 13:40:59 2021 +0100
Set wait_for_built_index=True for 17-multi-type-value-test.py
---
src/mango/test/17-multi-type-value-test.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mango/test/17-multi-type-value-test.py
b/src/mango/test/17-multi-type-value-test.py
index 5a8fced..1947570 100644
--- a/src/mango/test/17-multi-type-value-test.py
+++ b/src/mango/test/17-multi-type-value-test.py
@@ -53,7 +53,7 @@ class MultiValueFieldTests:
class MultiValueFieldJSONTests(mango.DbPerClass, MultiValueFieldTests):
def setUp(self):
self.db.recreate()
- self.db.create_index(["name"], wait_for_built_index=False)
+ self.db.create_index(["name"], wait_for_built_index=True)
self.db.create_index(["age", "name"], wait_for_built_index=True)
self.db.save_docs(copy.deepcopy(DOCS))