Skip to content

Commit c7b8e85

Browse files
committed
Run swiftformat
feature/fix-misnamed-property
1 parent cce4185 commit c7b8e85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/CoreDataRepositoryTests/BatchRequestTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ extension CoreDataRepositoryTests {
159159
let count = try repositoryContext.count(for: fetchRequest)
160160
expectNoDifference(count, 0, "Count of objects in CoreData should be zero at the start of each test.")
161161

162-
let _ = try values
162+
_ = try values
163163
.map(mapDictToManagedModel(_:))
164164
try repositoryContext.save()
165165
}
@@ -207,7 +207,7 @@ extension CoreDataRepositoryTests {
207207
let count = try repositoryContext.count(for: fetchRequest)
208208
expectNoDifference(count, 0, "Count of objects in CoreData should be zero at the start of each test.")
209209

210-
let _ = try values
210+
_ = try values
211211
.map(mapDictToManagedModel(_:))
212212
try repositoryContext.save()
213213
}

0 commit comments

Comments
 (0)