Skip to content

Commit e90b5a6

Browse files
committed
Fix tests
1 parent 76fdb5f commit e90b5a6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Tests/StructTransactionMacroTests/WriterMacroTests.swift

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ final class WriterMacroTests: XCTestCase {
170170
self.pointer = pointer
171171
}
172172
173+
// MARK: - Properties
174+
173175
public var stored_property_wrapper: String {
174176
mutating _read {
175177
$_readIdentifiers.insert("stored_property_wrapper")
@@ -180,6 +182,10 @@ final class WriterMacroTests: XCTestCase {
180182
yield &pointer.pointee.stored_property_wrapper
181183
}
182184
}
185+
186+
// MARK: - Functions
187+
188+
183189
}
184190
185191
}
@@ -252,6 +258,8 @@ final class WriterMacroTests: XCTestCase {
252258
self.pointer = pointer
253259
}
254260
261+
// MARK: - Properties
262+
255263
public var constant_has_initial_value: Int {
256264
mutating _read {
257265
$_readIdentifiers.insert("constant_has_initial_value")
@@ -262,6 +270,10 @@ final class WriterMacroTests: XCTestCase {
262270
yield &pointer.pointee.constant_has_initial_value
263271
}
264272
}
273+
274+
// MARK: - Functions
275+
276+
265277
}
266278
267279
}
@@ -365,6 +377,8 @@ final class WriterMacroTests: XCTestCase {
365377
self.pointer = pointer
366378
}
367379
380+
// MARK: - Properties
381+
368382
public var computed_read_only: Int
369383
{
370384
mutating get {
@@ -390,6 +404,10 @@ final class WriterMacroTests: XCTestCase {
390404
variable_no_initial_value = newValue
391405
}
392406
}
407+
408+
// MARK: - Functions
409+
410+
393411
}
394412
395413
}

0 commit comments

Comments
 (0)