1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Got explicit about encodings.

This commit is contained in:
Thomas Harte 2017-05-21 22:53:06 -04:00
parent e3e461d7cb
commit 3fb3cc8269

View File

@ -14,8 +14,8 @@ class FUSETests: XCTestCase {
func testFUSE() {
if let inputFilename = Bundle(for: type(of: self)).path(forResource: "tests", ofType: "in"),
let outputFilename = Bundle(for: type(of: self)).path(forResource: "tests", ofType: "expected") {
if let input = try? String(contentsOf: URL(fileURLWithPath: inputFilename)),
let output = try? String(contentsOf: URL(fileURLWithPath: outputFilename)) {
if let input = try? String(contentsOf: URL(fileURLWithPath: inputFilename), encoding: .utf8),
let output = try? String(contentsOf: URL(fileURLWithPath: outputFilename), encoding: .utf8) {
let machine = CSTestMachineZ80()
// machine.setData(testData, atAddress: 0x0100)