File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import Logging
2
2
import DiscordBM
3
- @ preconcurrency import Collections
3
+ import Collections
4
4
import Foundation
5
5
6
6
/// Cache for reactions-related stuff.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import Foundation
5
5
#endif
6
6
import DiscordModels
7
7
import Models
8
- @ preconcurrency import Collections
8
+ import Collections
9
9
import AsyncHTTPClient
10
10
import Logging
11
11
import NIOHTTP1
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ class GatewayProcessingTests: XCTestCase {
431
431
if case let . flags( flags) = response. data {
432
432
XCTAssertTrue (
433
433
flags. flags? . contains ( . ephemeral) == true ,
434
- " \( flags. flags? . representableValues ( ) . values ?? [ ] ) "
434
+ " \( flags. flags? . representableValues ( ) ?? [ ] ) "
435
435
)
436
436
} else {
437
437
XCTFail ( " Unexpected response: \( response) " )
@@ -492,7 +492,7 @@ class GatewayProcessingTests: XCTestCase {
492
492
if case let . flags( flags) = response. data {
493
493
XCTAssertTrue (
494
494
flags. flags? . contains ( . ephemeral) == true ,
495
- " \( flags. flags? . representableValues ( ) . values ?? [ ] ) "
495
+ " \( flags. flags? . representableValues ( ) ?? [ ] ) "
496
496
)
497
497
} else {
498
498
XCTFail ( " Unexpected response: \( response) " )
You can’t perform that action at this time.
0 commit comments