File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Tests/SwiftAlgorithmsTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ extension IndexValidator {
222
222
expectedCount: Int ? = nil ,
223
223
file: StaticString = #file, line: UInt = #line
224
224
) {
225
- let indicesIncludingEnd = indicesIncludingEnd ( collection)
225
+ let indicesIncludingEnd = self . indicesIncludingEnd ( collection)
226
226
let count = indicesIncludingEnd. count - 1
227
227
228
228
let validator = Validator (
@@ -242,7 +242,7 @@ extension IndexValidator where C: BidirectionalCollection {
242
242
_ collection: C , expectedCount: Int ? = nil ,
243
243
file: StaticString = #file, line: UInt = #line
244
244
) {
245
- let indicesIncludingEnd = indicesIncludingEnd ( collection)
245
+ let indicesIncludingEnd = self . indicesIncludingEnd ( collection)
246
246
let count = indicesIncludingEnd. count - 1
247
247
248
248
let validator = Validator (
You can’t perform that action at this time.
0 commit comments