Skip to content

Commit 8971a25

Browse files
committed
lipstick
1 parent 786427b commit 8971a25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/InterposeKitTests/InterposeKitTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ final class InterposeKitTests: XCTestCase {
3232

3333
// Calling convention and passing selector is important!
3434
// You're free to skip calling the original implementation.
35-
let string = store((@convention(c) (AnyObject, Selector) -> String).self)(`self`, store.selector)
35+
let origCall = store((@convention(c) (AnyObject, Selector) -> String).self)
36+
let string = origCall(`self`, store.selector)
3637

3738
print("After Interposing \(`self`)")
3839

0 commit comments

Comments
 (0)