-
Notifications
You must be signed in to change notification settings - Fork 90
refactor: program test reduce forester utils dep #1867
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8a331ee
34a1173
06aec11
fd37d14
0a094fd
baeab56
58882c0
7dad150
3631d00
e7560c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -86,3 +86,4 @@ output1.txt | |
| .zed | ||
|
|
||
| **/.claude/**/* | ||
| **/~/ | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -2,7 +2,7 @@ use std::{sync::Arc, time::Duration}; | |||||||||||||||||||||
|
|
||||||||||||||||||||||
| use forester::run_pipeline; | ||||||||||||||||||||||
| use forester_utils::{ | ||||||||||||||||||||||
| registry::{register_test_forester, update_test_forester}, | ||||||||||||||||||||||
| registry::update_test_forester, | ||||||||||||||||||||||
| rpc_pool::SolanaRpcPoolBuilder, | ||||||||||||||||||||||
| }; | ||||||||||||||||||||||
|
Comment on lines
4
to
7
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
You removed the old import but calls at lines 87-93 still use the function. Add the new path import from -use forester_utils::{
- registry::update_test_forester,
- rpc_pool::SolanaRpcPoolBuilder,
-};
+use forester_utils::{
+ registry::update_test_forester,
+ rpc_pool::SolanaRpcPoolBuilder,
+};
+use light_program_test::utils::register_test_forester;📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| use light_batched_merkle_tree::{ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wdyt about moving
update_test_forestertoo?