Skip to content

Commit c17db2f

Browse files
authored
Fix a TinyFastSequence test was modified in #563 (#564)
1 parent f275afc commit c17db2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ConnectionPoolModuleTests/TinyFastSequenceTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ final class TinyFastSequenceTests: XCTestCase {
4646
XCTAssertEqual(array.capacity, 8)
4747

4848
var twoElemSequence = TinyFastSequence<Int>([1, 2])
49-
twoElemSequence.append(3)
5049
twoElemSequence.reserveCapacity(8)
50+
twoElemSequence.append(3)
5151
guard case .n(let array) = twoElemSequence.base else {
5252
return XCTFail("Expected sequence to be backed by an array")
5353
}

0 commit comments

Comments
 (0)