Skip to content

Commit 095c703

Browse files
committed
Fix a use of Locked.wrappedValue I missed.
Follow-up to #185. I missed a use of `wrappedValue` and because our CI is broken, I didn't notice the failure.
1 parent 33622d7 commit 095c703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/TestingTests/EventRecorderTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ struct EventRecorderTests {
147147

148148
await runTest(for: PredictablyFailingTests.self, configuration: configuration)
149149

150-
let buffer = stream.buffer.wrappedValue
150+
let buffer = stream.buffer.rawValue
151151
if testsWithSignificantIOAreEnabled {
152152
print(buffer, terminator: "")
153153
}

0 commit comments

Comments
 (0)