Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ed4e5e

Browse files
committedFeb 19, 2025
Fix typo in ci workflow
1 parent 3a82b41 commit 2ed4e5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ jobs:
7777
run: swift test
7878
- name: Test macOS
7979
if: matrix.os == 'macos-latest'
80-
run: swift test --skip K3d
80+
run: swift test --skip K8s

‎Tests/SwiftkubeClientTests/K8sTestCase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ open class K8sTestCase: XCTestCase {
9595
}
9696
}
9797

98-
func assertEqual<S: Sequence>(_ lhs: S?, _ rhs: S?, file: StaticString = #file, line: UInt = #line) where S.Element: Hashable {
98+
func assertEqual<S: Sequence>(_ lhs: S?, _ rhs: S?, file: StaticString = #filePath, line: UInt = #line) where S.Element: Hashable {
9999
XCTAssert(
100100
Set(lhs ?? [] as! S) == Set(rhs ?? [] as! S),
101101
"\(String(describing: lhs)) is not equal to \(String(describing: rhs))",

0 commit comments

Comments
 (0)
Please sign in to comment.