Skip to content

Commit 0759c02

Browse files
committed
Update unit tests
1 parent 696085c commit 0759c02

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Tests/KeystoneTests/Tests/Models/ReaderCardTests.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ class ReaderCardTests: CoreDataTestCase {
3131
let card = ReaderCard(context: self.mainContext, from: remoteCard)
3232
let topics = card?.topicsArray
3333

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())
34+
// THEN return 0 as these were disabled in 26.5
35+
expect(topics?.count).to(equal(0))
3736
expectation.fulfill()
3837
}
3938

0 commit comments

Comments
 (0)