Skip to content

Commit bf7ad1d

Browse files
stephencelisjunebash
authored andcommitted
Run swift-format
1 parent fc17996 commit bf7ad1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/ComposableArchitectureTests/EffectPublisherTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ final class EffectPublisherTests: BaseTCATestCase {
1010
@Dependency(\.date.now) var now
1111

1212
let effect = withDependencies {
13-
$0.date.now = Date(timeIntervalSince1970: 1234567890)
13+
$0.date.now = Date(timeIntervalSince1970: 1_234_567_890)
1414
} operation: {
1515
EffectTask.publisher {
1616
Just(now)
@@ -19,6 +19,6 @@ final class EffectPublisherTests: BaseTCATestCase {
1919

2020
var value: Date?
2121
effect.sink { value = $0 }.store(in: &self.cancellables)
22-
XCTAssertEqual(value, Date(timeIntervalSince1970: 1234567890))
22+
XCTAssertEqual(value, Date(timeIntervalSince1970: 1_234_567_890))
2323
}
2424
}

0 commit comments

Comments
 (0)