[stdlib][swift-3-indexing-model] fixing more tests

Algorithm and SequenceWrapperTest
This commit is contained in:
Max Moiseev
2016-03-22 14:26:55 -07:00
parent 55885fb5ed
commit 6e76935b33
2 changed files with 3 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ Algorithm.test("sorted/strings")
// A wrapper around Array<T> that disables any type-specific algorithm
// optimizations and forces bounds checking on.
struct A<T> : MutableCollection {
struct A<T> : MutableCollection, RandomAccessCollection {
init(_ a: Array<T>) {
impl = a
}