diff --git a/Mobile Buy SDK/Mobile Buy SDK Tests/BUYOperationTests.m b/Mobile Buy SDK/Mobile Buy SDK Tests/BUYOperationTests.m index c829f5b..3581f59 100644 --- a/Mobile Buy SDK/Mobile Buy SDK Tests/BUYOperationTests.m +++ b/Mobile Buy SDK/Mobile Buy SDK Tests/BUYOperationTests.m @@ -66,10 +66,10 @@ [operation cancel]; XCTAssertTrue(operation.isCancelled); - XCTAssertTrue(operation.isFinished); + XCTAssertFalse(operation.isFinished); [operation cancelExecution]; - XCTAssertTrue(operation.isFinished); + XCTAssertFalse(operation.isFinished); // State isn't changed if operation is cancelled } @end