Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ final class TinyFastSequenceTests: XCTestCase {
XCTAssertEqual(array.capacity, 8)

var twoElemSequence = TinyFastSequence<Int>([1, 2])
twoElemSequence.append(3)
twoElemSequence.reserveCapacity(8)
twoElemSequence.append(3)
guard case .n(let array) = twoElemSequence.base else {
return XCTFail("Expected sequence to be backed by an array")
}
Expand Down
Loading