TDKCandidates // Fix unit test error.
This commit is contained in:
parent
29b89518c0
commit
da25d6acb5
|
@ -21,7 +21,7 @@ final class CandidatePoolTests: XCTestCase {
|
||||||
func testPoolHorizontal() throws {
|
func testPoolHorizontal() throws {
|
||||||
let pool = CandidatePool(candidates: testCandidates, rowCapacity: 6)
|
let pool = CandidatePool(candidates: testCandidates, rowCapacity: 6)
|
||||||
var strOutput = ""
|
var strOutput = ""
|
||||||
pool.candidateRows.forEach {
|
pool.candidateLines.forEach {
|
||||||
$0.forEach {
|
$0.forEach {
|
||||||
strOutput += $0.displayedText + ", "
|
strOutput += $0.displayedText + ", "
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ final class CandidatePoolTests: XCTestCase {
|
||||||
func testPoolVertical() throws {
|
func testPoolVertical() throws {
|
||||||
let pool = CandidatePool(candidates: testCandidates, columnCapacity: 6)
|
let pool = CandidatePool(candidates: testCandidates, columnCapacity: 6)
|
||||||
var strOutput = ""
|
var strOutput = ""
|
||||||
pool.candidateColumns.forEach {
|
pool.candidateLines.forEach {
|
||||||
$0.forEach {
|
$0.forEach {
|
||||||
strOutput += $0.displayedText + ", "
|
strOutput += $0.displayedText + ", "
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue