Skip to content

Commit e627186

Browse files
committed
platform support fix
1 parent c36c35c commit e627186

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Package.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import PackageDescription
55

66
let package = Package(
77
name: "structured-networking",
8+
platforms: [
9+
.macOS(.v10_15),
10+
.iOS(.v14)
11+
],
812
products: [
913
// Products define the executables and libraries a package produces, and make them visible to other packages.
1014
.library(

Tests/structured-networkingTests/structured_networkingTests.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ import XCTest
33

44
final class structured_networkingTests: XCTestCase {
55
func testExample() {
6-
// This is an example of a functional test case.
7-
// Use XCTAssert and related functions to verify your tests produce the correct
8-
// results.
9-
XCTAssertEqual(structured_networking().text, "Hello, World!")
6+
XCTFail("write moar tests, bro")
107
}
118

129
static var allTests = [

0 commit comments

Comments
 (0)