We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04bfb3 commit e45a2d1Copy full SHA for e45a2d1
Tests/InterposeKitTests/ClassHookTests.swift
@@ -206,8 +206,8 @@ final class ClassHookTests: XCTestCase {
206
on: ExampleClass.self,
207
for: #selector(getter: ExampleClass.intValueStatic),
208
methodKind: .class,
209
- methodSignature: (@convention(c) (ExampleClass, Selector) -> Int).self,
210
- hookSignature: (@convention(block) (ExampleClass) -> Int).self
+ methodSignature: (@convention(c) (ExampleClass.Type, Selector) -> Int).self,
+ hookSignature: (@convention(block) (ExampleClass.Type) -> Int).self
211
) { hook in
212
return { `self` in 2 }
213
}
0 commit comments