Tweak broken test to make sure caught by travis

This commit is contained in:
Joshua Hudson
2017-01-23 22:30:57 -08:00
committed by GitHub
parent 841fd2ea2e
commit bca3071c70

View File

@@ -180,11 +180,11 @@
BOOL fileHasValidPassword = [SSZipArchive isPasswordValidForArchiveAtPath:zipPath password:@"passw0rd2" error:&error];
XCTAssertTrue(fileHasValidPassword,@"Valid password reports true.");
XCTAssertTrue(fileHasValidPassword,@"Valid password reports false.");
BOOL fileHasInvalidValidPassword = [SSZipArchive isPasswordValidForArchiveAtPath:zipPath password:@"passw0rd123" error:&error];
XCTAssertFalse(fileHasInvalidValidPassword,@"Invalid password reports false.");
XCTAssertFalse(fileHasInvalidValidPassword,@"Invalid password reports true.");
}