Skip to content

Commit d0ebc58

Browse files
committed
Updated unit tests
1 parent 624ab59 commit d0ebc58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/CoreModelTests/TestModel.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public struct Campground: Equatable, Hashable, Codable, Identifiable {
199199
public extension Campground {
200200

201201
/// Campground Amenities
202-
enum Amenity: String, Codable, CaseIterable {
202+
enum Amenity: String, Codable, CaseIterable, Sendable {
203203

204204
case water
205205
case amp30
@@ -256,7 +256,7 @@ extension Array: AttributeDecodable where Self.Element == Campground.Amenity {
256256
public extension Campground {
257257

258258
/// Location Coordinates
259-
struct LocationCoordinates: Equatable, Hashable, Codable {
259+
struct LocationCoordinates: Equatable, Hashable, Codable, Sendable {
260260

261261
/// Latitude
262262
public var latitude: Double
@@ -297,7 +297,7 @@ extension Campground.LocationCoordinates: AttributeDecodable {
297297
public extension Campground {
298298

299299
/// Schedule (e.g. Check in, Check Out)
300-
struct Schedule: Equatable, Hashable, Codable {
300+
struct Schedule: Equatable, Hashable, Codable, Sendable {
301301

302302
public var start: UInt
303303

0 commit comments

Comments
 (0)