Commit 8164f03
committed
Fix makeGitManager call in test after Effect.fn refactor
makeGitManager was changed from an Effect (Effect.gen) to a function
(Effect.fn), but GitManager.test.ts still called makeGitManager.pipe(...)
instead of makeGitManager().pipe(...). This would crash at runtime since
plain functions don't have a .pipe method.1 parent ef098f5 commit 8164f03
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
525 | 525 | | |
526 | 526 | | |
527 | 527 | | |
528 | | - | |
| 528 | + | |
529 | 529 | | |
530 | 530 | | |
531 | 531 | | |
| |||
0 commit comments