Skip to content

Commit 9650a85

Browse files
author
Tim Vermeulen
committed
Fix compiler error on Linux
1 parent 9c81fc6 commit 9650a85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftAlgorithmsTests/TestUtilities.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ extension IndexValidator {
222222
expectedCount: Int? = nil,
223223
file: StaticString = #file, line: UInt = #line
224224
) {
225-
let indicesIncludingEnd = indicesIncludingEnd(collection)
225+
let indicesIncludingEnd = self.indicesIncludingEnd(collection)
226226
let count = indicesIncludingEnd.count - 1
227227

228228
let validator = Validator(
@@ -242,7 +242,7 @@ extension IndexValidator where C: BidirectionalCollection {
242242
_ collection: C, expectedCount: Int? = nil,
243243
file: StaticString = #file, line: UInt = #line
244244
) {
245-
let indicesIncludingEnd = indicesIncludingEnd(collection)
245+
let indicesIncludingEnd = self.indicesIncludingEnd(collection)
246246
let count = indicesIncludingEnd.count - 1
247247

248248
let validator = Validator(

0 commit comments

Comments
 (0)