Skip to content

Commit

Permalink
Get rid of unsafe flags
Browse files Browse the repository at this point in the history
  • Loading branch information
aure committed Aug 4, 2022
1 parent c62327a commit bbc6e23
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let package = Package(
name: "Tonic",
products: [.library(name: "Tonic", targets: ["Tonic"])],
targets: [
.target(name: "Tonic", swiftSettings: [.unsafeFlags(["-enable-testing", "-g"])]),
.target(name: "Tonic"),
.testTarget(name: "TonicTests", dependencies: ["Tonic"]),
]
)
2 changes: 1 addition & 1 deletion Tests/TonicTests/BitSetTests.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import XCTest
@testable import Tonic
import Tonic

class BitSetTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/ChordTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

class ChordTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/IntervalTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

final class IntervalTests: XCTestCase {
func testIntervalBetween() {
Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/KeyTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

class KeyTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/NoteTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

final class NoteTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/PerformanceTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

final class PerformanceTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/ReadMeTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

final class ReadMeTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/TonicTests/TonicTests.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Tonic
import Tonic

final class TonicTests: XCTestCase {

Expand Down

0 comments on commit bbc6e23

Please # to comment.