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 c5a7d1b commit a4538ebCopy full SHA for a4538eb
Tests/ComposableArchitectureTests/TestStoreTests.swift
@@ -315,14 +315,14 @@ final class TestStoreTests: XCTestCase {
315
initialState: 0,
316
reducer: Counter()
317
) {
318
- $0.date.now = Date(timeIntervalSince1970: 1234567890)
+ $0.date.now = Date(timeIntervalSince1970: 1_234_567_890)
319
}
320
321
- store.send(()) { $0 = 1234567890 }
+ store.send(()) { $0 = 1_234_567_890 }
322
323
- store.dependencies.date.now = Date(timeIntervalSince1970: 987654321)
+ store.dependencies.date.now = Date(timeIntervalSince1970: 987_654_321)
324
325
- store.send(()) { $0 = 987654321 }
+ store.send(()) { $0 = 987_654_321 }
326
327
328
func testOverrideDependenciesOnTestStore_Init() {
0 commit comments