We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 696085c commit 0759c02Copy full SHA for 0759c02
Tests/KeystoneTests/Tests/Models/ReaderCardTests.swift
@@ -31,9 +31,8 @@ class ReaderCardTests: CoreDataTestCase {
31
let card = ReaderCard(context: self.mainContext, from: remoteCard)
32
let topics = card?.topicsArray
33
34
- expect(topics?.count).to(equal(2))
35
- expect(topics?.filter { $0.title == "Activism" }).toNot(beNil())
36
- expect(topics?.filter { $0.slug == "activism" }).toNot(beNil())
+ // THEN return 0 as these were disabled in 26.5
+ expect(topics?.count).to(equal(0))
37
expectation.fulfill()
38
}
39
0 commit comments