@@ -30,12 +30,12 @@ { void *pool = objc_autoreleasePoolPush(); OFSHA224Hash *sha224, *copy; OFFile *f = [OFFile fileWithPath: @"testfile.bin" mode: @"r"]; - TEST(@"+[cryptoHashWithAllowsSwappableMemory:]", - (sha224 = [OFSHA224Hash cryptoHashWithAllowsSwappableMemory: true])) + TEST(@"+[hashWithAllowsSwappableMemory:]", + (sha224 = [OFSHA224Hash hashWithAllowsSwappableMemory: true])) while (!f.atEndOfStream) { char buf[64]; size_t len = [f readIntoBuffer: buf length: 64]; [sha224 updateWithBuffer: buf length: len];