Skip to content

Commit

Permalink
fixup! [CI] Add Swift 5.9 CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Oct 15, 2023
1 parent f708838 commit dd0b363
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Tests/YamsTests/EncoderTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -590,14 +590,6 @@ private struct Address: Codable, Equatable {
let zipCode: Int
let country: String

init(street: String, city: String, state: String, zipCode: Int, country: String) {
self.street = street
self.city = city
self.state = state
self.zipCode = zipCode
self.country = country
}

static func == (_ lhs: Address, _ rhs: Address) -> Bool {
return lhs.street == rhs.street &&
lhs.city == rhs.city &&
Expand Down Expand Up @@ -685,11 +677,6 @@ private struct Company: Codable, Equatable {
let address: Address
var employees: [Employee]

init(address: Address, employees: [Employee]) {
self.address = address
self.employees = employees
}

static func == (_ lhs: Company, _ rhs: Company) -> Bool {
return lhs.address == rhs.address && lhs.employees == rhs.employees
}
Expand Down

0 comments on commit dd0b363

Please sign in to comment.