Skip to content

Commit

Permalink
[#482] Update KIF
Browse files Browse the repository at this point in the history
  • Loading branch information
blyscuit committed Oct 10, 2023
1 parent ed8c984 commit d2905e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions {PROJECT_NAME}KIFUITests/Sources/Utilities/KIF+Swift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

import KIF

extension XCTestCase {
extension KIFSpec {

func tester(file: String = #file, _ line: Int = #line) -> KIFUITestActor {
return KIFUITestActor(inFile: file, atLine: line, delegate: self)
static func tester(file: String = #file, _ line: Int = #line) -> KIFUITestActor {
return KIFUITestActor(inFile: file, atLine: line, delegate: kifDelegate)
}

func system(file: String = #file, _ line: Int = #line) -> KIFSystemTestActor {
return KIFSystemTestActor(inFile: file, atLine: line, delegate: self)
static func system(file: String = #file, _ line: Int = #line) -> KIFSystemTestActor {
return KIFSystemTestActor(inFile: file, atLine: line, delegate: kifDelegate)
}
}

0 comments on commit d2905e6

Please sign in to comment.