Skip to content

Commit ed1d648

Browse files
committed
formatting
1 parent d1dad32 commit ed1d648

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Sources/DistributedActorsTestKit/InspectKit.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ internal struct InspectKit {
146146

147147
/// Actor names to their counts
148148
static func actorStats() throws -> ActorStats {
149-
#if swift(>=5.8.0)
149+
#if swift(>=5.8.0)
150150
// FIXME(regex): rdar://98705227 can't use regex on 5.7 on Linux because of a bug that crashes String.starts(with:) at runtime then
151151
let (out, err, _) = Self.runCommand(cmd: "\(self.baseDir)/scripts/dump_actors.sh")
152152

@@ -175,9 +175,9 @@ internal struct InspectKit {
175175
}
176176

177177
return ActorStats(stats: stats)
178-
#else
178+
#else
179179
return .init()
180-
#endif
180+
#endif
181181
}
182182
}
183183

Tests/DistributedActorsTestKitTests/ActorTestProbeTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import DistributedActors
1717
import XCTest
1818

1919
final class ActorTestProbeTests: SingleClusterSystemXCTestCase {
20-
2120
func test_maybeExpectMessage_shouldReturnTheReceivedMessage() throws {
2221
let probe = self.testKit.makeTestProbe("p2", expecting: String.self)
2322

0 commit comments

Comments
 (0)