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