From 20fb01280c8f151dfa355003d19f49b875854d7d Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Thu, 16 Jan 2025 16:38:54 -0500 Subject: [PATCH] chore: add dummy test to make CI happy Right now it complains and fails because no tests: `error: no tests to run` --- src/encoding/swap_encoder/swap_struct_encoder.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/encoding/swap_encoder/swap_struct_encoder.rs b/src/encoding/swap_encoder/swap_struct_encoder.rs index 467b98d..e8d8d19 100644 --- a/src/encoding/swap_encoder/swap_struct_encoder.rs +++ b/src/encoding/swap_encoder/swap_struct_encoder.rs @@ -83,3 +83,11 @@ impl SwapEncoder for BalancerV2SwapEncoder { self.executor_address } } + +#[cfg(test)] +mod tests { + #[tokio::test] + async fn test_encode_swap() { + // Dummy test to make CI pass. Please implement me. + } +}