@@ -27,7 +27,7 @@ final class RecordMeetingTests: XCTestCase {
27
27
RecordMeeting ( )
28
28
} withDependencies: {
29
29
$0. continuousClock = clock
30
- $0. date. now = Date ( timeIntervalSince1970: 1234567890 )
30
+ $0. date. now = Date ( timeIntervalSince1970: 1_234_567_890 )
31
31
$0. dismiss = DismissEffect {
32
32
dismissed. fulfill ( )
33
33
}
@@ -79,7 +79,7 @@ final class RecordMeetingTests: XCTestCase {
79
79
$0. syncUp. meetings. insert (
80
80
Meeting (
81
81
id: Meeting . ID ( UUID ( 0 ) ) ,
82
- date: Date ( timeIntervalSince1970: 1234567890 ) ,
82
+ date: Date ( timeIntervalSince1970: 1_234_567_890 ) ,
83
83
transcript: " "
84
84
) ,
85
85
at: 0
@@ -117,7 +117,7 @@ final class RecordMeetingTests: XCTestCase {
117
117
RecordMeeting ( )
118
118
} withDependencies: {
119
119
$0. continuousClock = clock
120
- $0. date. now = Date ( timeIntervalSince1970: 1234567890 )
120
+ $0. date. now = Date ( timeIntervalSince1970: 1_234_567_890 )
121
121
$0. dismiss = DismissEffect { dismissed. fulfill ( ) }
122
122
$0. speechClient. authorizationStatus = { . authorized }
123
123
$0. speechClient. startTask = { @Sendable _ in
@@ -168,7 +168,7 @@ final class RecordMeetingTests: XCTestCase {
168
168
RecordMeeting ( )
169
169
} withDependencies: {
170
170
$0. continuousClock = clock
171
- $0. date. now = Date ( timeIntervalSince1970: 1234567890 )
171
+ $0. date. now = Date ( timeIntervalSince1970: 1_234_567_890 )
172
172
$0. dismiss = DismissEffect { dismissed. fulfill ( ) }
173
173
$0. speechClient. authorizationStatus = { . denied }
174
174
$0. uuid = . incrementing
@@ -190,7 +190,7 @@ final class RecordMeetingTests: XCTestCase {
190
190
$0. syncUp. meetings. insert (
191
191
Meeting (
192
192
id: Meeting . ID ( UUID ( 0 ) ) ,
193
- date: Date ( timeIntervalSince1970: 1234567890 ) ,
193
+ date: Date ( timeIntervalSince1970: 1_234_567_890 ) ,
194
194
transcript: " "
195
195
) ,
196
196
at: 0
@@ -257,7 +257,7 @@ final class RecordMeetingTests: XCTestCase {
257
257
RecordMeeting ( )
258
258
} withDependencies: {
259
259
$0. continuousClock = clock
260
- $0. date. now = Date ( timeIntervalSince1970: 1234567890 )
260
+ $0. date. now = Date ( timeIntervalSince1970: 1_234_567_890 )
261
261
$0. dismiss = DismissEffect { dismissed. fulfill ( ) }
262
262
$0. speechClient. authorizationStatus = { . denied }
263
263
$0. uuid = . incrementing
@@ -284,7 +284,7 @@ final class RecordMeetingTests: XCTestCase {
284
284
$0. syncUp. meetings. insert (
285
285
Meeting (
286
286
id: Meeting . ID ( UUID ( 0 ) ) ,
287
- date: Date ( timeIntervalSince1970: 1234567890 ) ,
287
+ date: Date ( timeIntervalSince1970: 1_234_567_890 ) ,
288
288
transcript: " "
289
289
) ,
290
290
at: 0
@@ -321,7 +321,7 @@ final class RecordMeetingTests: XCTestCase {
321
321
RecordMeeting ( )
322
322
} withDependencies: {
323
323
$0. continuousClock = clock
324
- $0. date. now = Date ( timeIntervalSince1970: 1234567890 )
324
+ $0. date. now = Date ( timeIntervalSince1970: 1_234_567_890 )
325
325
$0. dismiss = DismissEffect { dismissed. fulfill ( ) }
326
326
$0. speechClient. authorizationStatus = { . authorized }
327
327
$0. speechClient. startTask = { @Sendable _ in
0 commit comments