Skip to content

Commit 01248c5

Browse files
committed
cleaned up tests
1 parent 5005c28 commit 01248c5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

BTree/Tests/Tests/BTreeTests.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@ class BTreeTests: XCTestCase {
112112
} catch {
113113
XCTFail("BTree is not balanced")
114114
}
115-
116-
XCTAssertEqual(bTree.description,
117-
"[4, 8, 12, 16][1, 2, 3][5, 6, 7][9, 10, 11][13, 14, 15][17, 18, 19, 20]")
118115
}
119116

120117
// MARK: - Removal
@@ -163,9 +160,6 @@ class BTreeTests: XCTestCase {
163160
} catch {
164161
XCTFail("BTree is not balanced")
165162
}
166-
167-
XCTAssertEqual(bTree.description,
168-
"[7, 12, 16][1, 2, 3, 4, 5][8, 10, 11][13, 14, 15][17, 18, 19, 20]")
169163
}
170164

171165
func testRemoveSomeFrom2ndOrder() {
@@ -183,9 +177,6 @@ class BTreeTests: XCTestCase {
183177
} catch {
184178
XCTFail("BTree is not balanced")
185179
}
186-
187-
XCTAssertEqual(bTree.description,
188-
"[12][4, 8][1, 2, 3][5, 7][10, 11][15, 18][13, 14][16, 17][19, 20]")
189180
}
190181

191182
func testRemoveAll() {

0 commit comments

Comments
 (0)