Skip to content

Commit f251392

Browse files
committed
wip
1 parent 2b52ad8 commit f251392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/ComposableArchitectureTests/EffectCancellationTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)