Skip to content

Commit d94e50d

Browse files
committed
-
1 parent 5ad2175 commit d94e50d

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

Sources/Probing/Probes/Probe.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// swiftlint:disable:this file_name
12
//
23
// Probe.swift
34
// Probing

Tests/DeeplyCopyableTests/DeeplyCopyableTests.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,16 +254,16 @@ extension DeeplyCopyableTests {
254254
self.id = id
255255
}
256256

257+
static func < (lhs: Person, rhs: Person) -> Bool {
258+
lhs.id < rhs.id
259+
}
260+
257261
func hash(into hasher: inout Hasher) {
258262
hasher.combine(id)
259263
hasher.combine(age)
260264
hasher.combine(name)
261265
hasher.combine(surname)
262266
}
263-
264-
static func < (lhs: Person, rhs: Person) -> Bool {
265-
lhs.id < rhs.id
266-
}
267267
}
268268
}
269269

Tests/ProbingMacrosTests/Probing/EffectMacroTests.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@
148148
macros: macros
149149
)
150150
}
151+
}
152+
153+
extension EffectMacroTests {
151154

152155
func testExpansionWithExecutorPreference() {
153156
assertMacroExpansion(
@@ -218,6 +221,9 @@
218221
macros: macros
219222
)
220223
}
224+
}
225+
226+
extension EffectMacroTests {
221227

222228
func testExpansionWithNestedChildren() {
223229
assertMacroExpansion(

0 commit comments

Comments
 (0)