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