Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Aug 11, 2024
1 parent ec64cc5 commit 93bb038
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Tests/VergeTests/PipelineTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ final class PipelineTests: XCTestCase {
Changes<DemoState>.init(
old: s,
new: s
)
),
storage: ()
),
.noUpdates
)
Expand All @@ -42,7 +43,8 @@ final class PipelineTests: XCTestCase {
Changes<DemoState>.init(
old: .init(name: "A", count: 1),
new: .init(name: "A", count: 2)
)
),
storage: ()
),
.noUpdates
)
Expand Down Expand Up @@ -76,7 +78,8 @@ final class PipelineTests: XCTestCase {
Changes<DemoState>.init(
old: s,
new: s
)
),
storage: ()
),
.noUpdates
)
Expand All @@ -91,7 +94,8 @@ final class PipelineTests: XCTestCase {
Changes<DemoState>.init(
old: .init(name: "A", count: 1),
new: .init(name: "A", count: 2)
)
),
storage: ()
),
.noUpdates
)
Expand Down

0 comments on commit 93bb038

Please sign in to comment.