File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Tests/ComposableArchitectureTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ final class EffectCancellationTests: BaseTCATestCase {
434434 }
435435
436436 func testCancellablePath( ) async throws {
437- let navigationIDPath = dump ( NavigationIDPath ( path: [ NavigationID ( ) ] ) )
437+ let navigationIDPath = NavigationIDPath ( path: [ NavigationID ( ) ] )
438438 let effect = withDependencies {
439439 $0. navigationIDPath = navigationIDPath
440440 } operation: {
@@ -449,7 +449,7 @@ final class EffectCancellationTests: BaseTCATestCase {
449449 await withDependencies {
450450 $0. navigationIDPath = NavigationIDPath ( path: [ NavigationID ( ) ] )
451451 } operation: {
452- for await action in effect. actions {
452+ for await _ in effect. actions {
453453 XCTFail ( )
454454 }
455455 }
You can’t perform that action at this time.
0 commit comments