Skip to content

Commit b463408

Browse files
committed
Fix tests
1 parent 75cebb9 commit b463408

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/ModuleInterface/Classes/ModuleInterface.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct ModuleInterface {
2929
}
3030
}
3131

32-
static let version: String = "0.0.1"
32+
static let version: String = "0.0.3"
3333
static let defaultOutputPath = "Documentation"
3434

3535
func run() {

Tests/ModuleInterfaceTests/VersionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class VersionCommandTests: XCTestCase {
1616
}
1717
let outputData = pipe.fileHandleForReading.readDataToEndOfFile()
1818
let output = String(decoding: outputData, as: UTF8.self).trimmingCharacters(in: .newlines)
19-
XCTAssertEqual(output, "ModuleInterface v0.0.1")
19+
XCTAssertEqual(output, "ModuleInterface v0.0.3")
2020
}
2121

2222
}

0 commit comments

Comments
 (0)