You can add the expected notification:
expectationForNotification("BlaBlaNotification", object: nil) { (notification) -> Bool in
sut.fetchData()
waitForExpectationsWithTimeout(5, handler: nil)
But personally, I would separate these two tests. One for fetching data (checked with a stub) and one for sending notifications.
source
share