We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fea90 commit bb56249Copy full SHA for bb56249
tests/common/mod.rs
@@ -278,11 +278,10 @@ pub(crate) struct TestConfig {
278
macro_rules! setup_builder {
279
($builder: ident, $config: expr) => {
280
#[cfg(feature = "uniffi")]
281
- let $builder = Builder::from_config($config.node_config.clone());
+ let mut $builder = Builder::from_config($config.node_config.clone());
282
#[cfg(not(feature = "uniffi"))]
283
let mut $builder = Builder::from_config($config.node_config.clone());
284
285
- #[cfg(not(feature = "uniffi"))]
286
crate::common::set_builder_log_writer(&mut $builder, &$config);
287
};
288
}
0 commit comments