Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
velicuvlad committed Dec 2, 2024
1 parent 686d84d commit 13fa8b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Objective-C/Tests/UnnestArrayIndexTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 1 addition & 1 deletion Swift/Tests/UnnestArrayTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 13fa8b9

Please sign in to comment.