@@ -35,11 +35,11 @@ OFFile *f = [OFFile fileWithPath: @"testfile.bin" mode: @"r"]; TEST(@"+[cryptoHash]", (rmd160 = [OFRIPEMD160Hash cryptoHash])) - while (![f isAtEndOfStream]) { + while (!f.atEndOfStream) { char buf[64]; size_t len = [f readIntoBuffer: buf length: 64]; [rmd160 updateWithBuffer: buf length: len]; @@ -47,16 +47,16 @@ [f close]; TEST(@"-[copy]", (copy = [[rmd160 copy] autorelease])) TEST(@"-[digest]", - memcmp([rmd160 digest], testfile_rmd160, 20) == 0 && - memcmp([copy digest], testfile_rmd160, 20) == 0) + memcmp(rmd160.digest, testfile_rmd160, 20) == 0 && + memcmp(copy.digest, testfile_rmd160, 20) == 0) EXPECT_EXCEPTION(@"Detect invalid call of " @"-[updateWithBuffer:length]", OFHashAlreadyCalculatedException, [rmd160 updateWithBuffer: "" length: 1]) [pool drain]; } @end