Skip to content

Commit

Permalink
Add get_citrea_path() to LightClientProvingTest (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpp authored Oct 29, 2024
1 parent 9bf432d commit db329d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/citrea/tests/bitcoin_e2e/light_client_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ use citrea_e2e::framework::TestFramework;
use citrea_e2e::test_case::{TestCase, TestCaseRunner};
use citrea_e2e::Result;

use super::get_citrea_path;

const TEN_MINS: Duration = Duration::from_secs(10 * 60);

struct LightClientProvingTest;
Expand Down Expand Up @@ -106,5 +108,8 @@ impl TestCase for LightClientProvingTest {

#[tokio::test]
async fn test_light_client_proving() -> Result<()> {
TestCaseRunner::new(LightClientProvingTest).run().await
TestCaseRunner::new(LightClientProvingTest)
.set_citrea_path(get_citrea_path())
.run()
.await
}

0 comments on commit db329d8

Please sign in to comment.