@@ -58,17 +58,14 @@ class GLTableCollectionViewTests: XCTestCase {
5858 XCTAssertGreaterThan ( tableCollectionView. numberOfCollectionItems, 0 ,
5959 " numberOfCollectionItems was: \( tableCollectionView. numberOfCollectionItems) \n There must be at least one GLIndexedCollectionViewCell " )
6060
61- XCTAssertNotEqual ( tableCollectionView . tableCellID, " " ,
62- " tableCellID was: \( tableCollectionView . tableCellID) \n UITableViewCell's cellIdentifier must not be empty " )
61+ XCTAssertNotEqual ( GLTableCollectionViewController . tableCellID, " " ,
62+ " tableCellID was: \( GLTableCollectionViewController . tableCellID) \n UITableViewCell's cellIdentifier must not be empty " )
6363
64- XCTAssertTrue ( tableCollectionView . tableCellID. hasSuffix ( " _section_# " ) ,
65- " tableCellID was: \( tableCollectionView . tableCellID) \n UITableViewCell's cellIdentifier must end with section number suffix " )
64+ XCTAssertTrue ( GLTableCollectionViewController . tableCellID. hasSuffix ( " _section_# " ) ,
65+ " tableCellID was: \( GLTableCollectionViewController . tableCellID) \n UITableViewCell's cellIdentifier must end with section number suffix " )
6666
67- XCTAssertTrue ( ( tableCollectionView. tableCellID. components ( separatedBy: " # " ) . count - 1 ) == 1 ,
68- " tableCellID was: \( tableCollectionView. tableCellID) \n UITableViewCell's cellIdentifier must contain only one # in it " )
69-
70- XCTAssertNotEqual ( tableCollectionView. collectionCellID, " " ,
71- " The cellIdentifier for the UICollectionCells should not be empty " )
67+ XCTAssertTrue ( ( GLTableCollectionViewController . tableCellID. components ( separatedBy: " # " ) . count - 1 ) == 1 ,
68+ " tableCellID was: \( GLTableCollectionViewController . tableCellID) \n UITableViewCell's cellIdentifier must contain only one # in it " )
7269 }
7370
7471 func testRandomColorsGeneration( ) {
0 commit comments