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 82f1df6 commit cc468f4Copy full SHA for cc468f4
CodeEditTests/Features/Welcome/RecentProjectsTests.swift
@@ -160,10 +160,14 @@ class RecentsStoreTests {
160
RecentsStore.documentOpened(at: file)
161
162
let remaining = RecentsStore.removeRecentProjects([dir])
163
- #expect(remaining == [file])
+
164
+ #expect(remaining.count == 1)
165
+ #expect(remaining[0].standardizedFileURL == file.standardizedFileURL)
166
167
let recents = RecentsStore.recentProjectURLs()
168
#expect(recents.count == 1)
169
#expect(recents[0].standardizedFileURL == file.standardizedFileURL)
170
171
}
172
173
@Test
0 commit comments