Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Feb 18, 2025
1 parent 6f54665 commit ef46f4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/VergeTests/BindingDerivedTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ final class BindingDerivedTests: XCTestCase {
let source = DemoStore()

let binding = source.bindingDerived(
get: .map { $0.count },
get: .select(\.count),
set: { source, new in
source.count = new
})
Expand All @@ -29,7 +29,7 @@ final class BindingDerivedTests: XCTestCase {
let source = DemoStore()

let binding: some StoreDriverType<Int> = source.bindingDerived(
get: .map { $0.count },
get: .select(\.count),
set: { source, new in
source.count = new
})
Expand Down Expand Up @@ -59,7 +59,7 @@ final class BindingDerivedTests: XCTestCase {
let source = DemoStore()

let binding = source.bindingDerived(
get: .map { $0.count },
get: .select(\.count),
set: { source, new in
source.count = new
})
Expand Down

0 comments on commit ef46f4a

Please sign in to comment.