Skip to content
Prev Previous commit
Next Next commit
Fix formatting
  • Loading branch information
bwetherfield committed Jul 16, 2019
commit ea50c664a31f55d0cd077c2051b4e4ba4ce39603
1 change: 0 additions & 1 deletion Sources/XMLCoder/Auxiliaries/Box/SingleElementBox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ struct SingleElementBox: SimpleBox {
}

extension SingleElementBox: Box {

var isNull: Bool {
return false
}
Expand Down
2 changes: 1 addition & 1 deletion Tests/XMLCoderTests/SimpleChoiceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class SimpleChoiceTests: XCTestCase {
let decoded = try XMLDecoder().decode([IntOrString].self, from: encoded)
XCTAssertEqual(original, decoded)
}

func testIntOrStringDoubleArrayRoundTrip() throws {
let original: [[IntOrString]] = [[
.int(1),
Expand Down