Skip to content

Commit a99d340

Browse files
committed
format
1 parent 7acebe0 commit a99d340

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Sources/GRPCProtobufCodeGen/ProtobufCodeGenParser.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ extension ProtobufCodeGenParser {
9696
file: FileDescriptor
9797
) -> [Dependency] {
9898
var codeDependencies: [Dependency] = [
99-
Dependency(module: "GRPCProtobuf", accessLevel: .internal),
99+
Dependency(module: "GRPCProtobuf", accessLevel: .internal)
100100
]
101101

102102
// If any services in the file depend on well-known Protobuf types then also import

Tests/GRPCProtobufCodeGenTests/ProtobufCodeGenParserTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct ProtobufCodeGenParserTests {
6161
@Test("Dependencies")
6262
func dependencies() {
6363
let expected: [GRPCCodeGen.Dependency] = [
64-
.init(module: "GRPCProtobuf", accessLevel: .internal), // Always an internal import
64+
.init(module: "GRPCProtobuf", accessLevel: .internal) // Always an internal import
6565
]
6666
#expect(self.codeGen.dependencies == expected)
6767
}
@@ -173,7 +173,7 @@ struct ProtobufCodeGenParserTests {
173173
@Test("Dependencies")
174174
func dependencies() {
175175
let expected: [GRPCCodeGen.Dependency] = [
176-
.init(module: "GRPCProtobuf", accessLevel: .internal), // Always an internal import
176+
.init(module: "GRPCProtobuf", accessLevel: .internal) // Always an internal import
177177
]
178178
#expect(self.codeGen.dependencies == expected)
179179
}

0 commit comments

Comments
 (0)