Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Feb 13, 2025
1 parent fa260cb commit 57c9584
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "ba70189bedf21fb5ab6369e7da98482c9e7a8c23d0114ffde1d58244e75bdf86",
"originHash" : "9b693930e3ff133fcfca9e921dbc6866b5c6a8822e86ab58d5c9fbacf689dc7e",
"pins" : [
{
"identity" : "normalization",
Expand Down Expand Up @@ -96,8 +96,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/VergeGroup/TypedIdentifier",
"state" : {
"revision" : "297de87772cccec24f8f1a63376778d3227305d7",
"version" : "2.0.2"
"revision" : "284340409ba47858a1b3c353dcef9c21303953db",
"version" : "2.0.3"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "Verge",
platforms: [
.macOS(.v11),
.macOS(.v13),
.iOS(.v16),
.tvOS(.v13),
.watchOS(.v6),
Expand Down
2 changes: 1 addition & 1 deletion Sources/Verge/Library/InoutRef.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public struct InoutRef<Wrapped: TrackingObject> {
guard let writeGraph else {
return false
}
return writeGraph.isEmpty
return !writeGraph.isEmpty
}

// MARK: - Initializers
Expand Down
2 changes: 1 addition & 1 deletion Tests/VergeNormalizationDerivedTests/CombiningTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class CombiningTests: XCTestCase {
}
}

wait(for: [exp])
wait(for: [exp], timeout: 10)

XCTAssertEqual(derived.state.author?.name, "Hiroshi Kimura")

Expand Down

0 comments on commit 57c9584

Please sign in to comment.