Skip to content

Commit 9914ae4

Browse files
committed
[test] Disable another measure method missed previously on Linux
On macOS since there is an override, both `measure` methods funnel through one entry point, but on other platforms they are not `open`, so we need to shadow all of them.
1 parent 6419477 commit 9914ae4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Sources/SKTestSupport/PerfTestCase.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ open class PerfTestCase: XCTestCase {
4545
{
4646
block()
4747
}
48+
public func measure(block: () -> Void) {
49+
block()
50+
}
4851
#endif
4952
#endif
5053

0 commit comments

Comments
 (0)