Skip to content

Commit

Permalink
updating dependencies and removing (unused & poorly conceived) retroa…
Browse files Browse the repository at this point in the history
…ctive ordering extension on UUID in tests (#41)
  • Loading branch information
heckj authored Aug 6, 2024
1 parent a2215c9 commit 421e0a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser",
"state" : {
"revision" : "c8ed701b513cf5177118a175d85fbbbcd707ab41",
"version" : "1.3.0"
"revision" : "0fbc8848e389af3bb55c182bc19ca9d5dc2f255b",
"version" : "1.4.0"
}
},
{
Expand Down Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-system",
"state" : {
"revision" : "025bcb1165deab2e20d4eaba79967ce73013f496",
"version" : "1.2.1"
"revision" : "6a9e38e7bd22a3b8ba80bddf395623cf68f57807",
"version" : "1.3.1"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import PackageDescription

var globalSwiftSettings: [PackageDescription.SwiftSetting] = [
.enableExperimentalFeature("StrictConcurrency")
.enableExperimentalFeature("StrictConcurrency"),
]

let package = Package(
Expand Down
6 changes: 0 additions & 6 deletions Tests/CRDTTests/DocTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ import XCTest
// These tests are placeholders in order to verify code examples in the documentation work as expected.

// used in ReplicatingCRDTs.md
extension UUID: Comparable {
public static func < (lhs: UUID, rhs: UUID) -> Bool {
lhs.uuidString < rhs.uuidString
}
}

final class DocTests: XCTestCase {
func testReplicatingCRDTs_1() throws {
// used in ReplicatingCRDTs.md
Expand Down

0 comments on commit 421e0a9

Please sign in to comment.