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")