We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TinyFastSequence
1 parent f275afc commit c17db2fCopy full SHA for c17db2f
Tests/ConnectionPoolModuleTests/TinyFastSequenceTests.swift
@@ -46,8 +46,8 @@ final class TinyFastSequenceTests: XCTestCase {
46
XCTAssertEqual(array.capacity, 8)
47
48
var twoElemSequence = TinyFastSequence<Int>([1, 2])
49
- twoElemSequence.append(3)
50
twoElemSequence.reserveCapacity(8)
+ twoElemSequence.append(3)
51
guard case .n(let array) = twoElemSequence.base else {
52
return XCTFail("Expected sequence to be backed by an array")
53
}
0 commit comments