From 686d84d668c23e10411005fecb7c97c3de1fc8bf Mon Sep 17 00:00:00 2001 From: Vlad Velicu Date: Mon, 2 Dec 2024 14:51:27 +0000 Subject: [PATCH 1/2] LiteCore 4.0.0-28 --- vendor/couchbase-lite-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/couchbase-lite-core b/vendor/couchbase-lite-core index 4732b9ef5..548993060 160000 --- a/vendor/couchbase-lite-core +++ b/vendor/couchbase-lite-core @@ -1 +1 @@ -Subproject commit 4732b9ef5cdae4d8f6d480c70f692c86869c6358 +Subproject commit 54899306015b9d94d956898a04886bc55ad0e7fb From 13fa8b9616ee98061c792cafe15e91099f59d2f3 Mon Sep 17 00:00:00 2001 From: Vlad Velicu Date: Mon, 2 Dec 2024 14:52:00 +0000 Subject: [PATCH 2/2] CBL-6441 --- Objective-C/Tests/UnnestArrayIndexTest.m | 2 +- Swift/Tests/UnnestArrayTest.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Objective-C/Tests/UnnestArrayIndexTest.m b/Objective-C/Tests/UnnestArrayIndexTest.m index 3cec83f9a..b7f6048cf 100644 --- a/Objective-C/Tests/UnnestArrayIndexTest.m +++ b/Objective-C/Tests/UnnestArrayIndexTest.m @@ -66,7 +66,7 @@ - (void) testArrayIndexConfigInvalidExpressions { 5. Get info of the index named "contacts" using an internal API and check that the index has path and expressions as configured. */ -- (void) _testCreateArrayIndexWithPath { +- (void) testCreateArrayIndexWithPath { NSError* err; CBLCollection* profiles = [self.db createCollectionWithName: @"profiles" scope: nil error: &err]; [self loadJSONResource: @"profiles_100" toCollection: profiles]; diff --git a/Swift/Tests/UnnestArrayTest.swift b/Swift/Tests/UnnestArrayTest.swift index 31c8bfd22..8e4db4350 100644 --- a/Swift/Tests/UnnestArrayTest.swift +++ b/Swift/Tests/UnnestArrayTest.swift @@ -52,7 +52,7 @@ class UnnestArrayTest: CBLTestCase { /// 3. Create an array index named "contacts" in the profiles collection. /// 4. Get index names from the profiles collection and check that the index named "contacts" exists. /// 5. Get info of the index named "contacts" using an internal API and check that the index has path and expressions as configured. - func _testCreateArrayIndexWithPath() throws { + func testCreateArrayIndexWithPath() throws { let profiles = try db.createCollection(name: "profiles") try loadJSONResource("profiles_100", collection: profiles) let config = ArrayIndexConfiguration(path: "contacts")