Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k-kohey committed May 18, 2023
1 parent 4d3283f commit 8053c5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,11 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-async-algorithms", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
],
targets: [
.target(
name: "Parchment",
dependencies: [
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms")
],
swiftSettings: [
.unsafeFlags([
"-strict-concurrency=complete"
Expand Down
4 changes: 2 additions & 2 deletions Tests/ParchmentTests/TrackedTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ private struct State: Equatable {
}

final class TrackedTests: XCTestCase {
@Tracked(logger: bundler) private var state: State? = nil
@Tracked(logger: bundler, scope: \.?.name) private var scopedState: State? = nil
@Tracked(name: "PropetyTrackingEvent", with: bundler) private var state: State? = nil
@Tracked(name: "PropetyTrackingEvent", with: bundler, scope: \.?.name) private var scopedState: State? = nil

func testTracked() async throws {
var result: LoggerSendable?
Expand Down

0 comments on commit 8053c5f

Please sign in to comment.