@@ -158,11 +158,11 @@ - (void)testFastEnumeration { size_t i = 0; for (OFString *object in _array) { - OTAssert(i < 3); + OTAssertLessThan(i, 3); OTAssertEqualObjects(object, cArray[i++]); } } - (void)testComponentsJoinedByString