observers.append(operation.observe(\.isCancelled, options: [.new]) { (operation, change) in
            if change.newValue == true {
                isCancelledExpectation.fulfill()
            }
        })