Skip to content

Commit

Permalink
Update version of CustomDump dependency (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
tahirmt authored Nov 24, 2023
1 parent 74b5e58 commit f323c64
Show file tree
Hide file tree
Showing 5 changed files with 25 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/pointfreeco/swift-custom-dump.git",
"state" : {
"revision" : "c9b6b940d95c0a925c63f6858943415714d8a981",
"version" : "0.5.2"
"revision" : "65fc9e2b62727cacfab9fc60d580c284a4b9308c",
"version" : "1.1.1"
}
},
{
Expand All @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state" : {
"revision" : "30314f1ece684dd60679d598a9b89107557b67d9",
"version" : "0.4.1"
"revision" : "23cbf2294e350076ea4dbd7d5d047c1e76b03631",
"version" : "1.0.2"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.10.0"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "0.5.2"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
SnapshotTestingDumpTests.Doctor(
name: "John",
email: "john@me.com",
age: 97,
field: "Podiatry",
level: "Expert"
)
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
SnapshotTestingDumpTests.TruckDriver(truckType: "Loader")
SnapshotTestingDumpTests.TruckDriver(
name: "Jimmy",
wheels: 6,
truckType: "Loader"
)
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
SnapshotTestingDumpTests.Parent(
name: "Arthur",
children: [
[0]: SnapshotTestingDumpTests.Child(
name: "Virginia",
parent: SnapshotTestingDumpTests.Parent(↩︎)
),
[1]: SnapshotTestingDumpTests.Child(
[1]: SnapshotTestingDumpTests.Child#2(
name: "Ronald",
parent: SnapshotTestingDumpTests.Parent(↩︎)
),
[2]: SnapshotTestingDumpTests.Child(
[2]: SnapshotTestingDumpTests.Child#3(
name: "Fred",
parent: SnapshotTestingDumpTests.Parent(↩︎)
),
[3]: SnapshotTestingDumpTests.Child(
[3]: SnapshotTestingDumpTests.Child#4(
name: "George",
parent: SnapshotTestingDumpTests.Parent(↩︎)
),
[4]: SnapshotTestingDumpTests.Child(
[4]: SnapshotTestingDumpTests.Child#5(
name: "Percy",
parent: SnapshotTestingDumpTests.Parent(↩︎)
),
[5]: SnapshotTestingDumpTests.Child(
[5]: SnapshotTestingDumpTests.Child#6(
name: "Charles",
parent: SnapshotTestingDumpTests.Parent(↩︎)
)
]
Expand Down

0 comments on commit f323c64

Please sign in to comment.