Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit a3c306e

Browse files
committed
fix tests
1 parent c966d4b commit a3c306e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

client/service/test/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ fn node_config<G: RuntimeGenesis + 'static, E: ChainSpecExtension + Clone + 'sta
210210
tracing_receiver: Default::default(),
211211
max_runtime_instances: 8,
212212
announce_block: true,
213+
informant_prefix: Default::default(),
213214
}
214215
}
215216

utils/browser/src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ where
9797
wasm_method: Default::default(),
9898
max_runtime_instances: 8,
9999
announce_block: true,
100+
informant_prefix: Default::default(),
100101
};
101102

102103
Ok(config)
@@ -118,7 +119,10 @@ struct RpcMessage {
118119
pub fn start_client(mut service: impl AbstractService) -> Client {
119120
// Spawn informant
120121
wasm_bindgen_futures::spawn_local(
121-
sc_informant::build(&service, sc_informant::OutputFormat::Plain).map(drop)
122+
sc_informant::build(
123+
&service,
124+
sc_informant::OutputFormat::Plain { prefix: Default::default() },
125+
).map(drop)
122126
);
123127

124128
// We dispatch a background task responsible for processing the service.

0 commit comments

Comments
 (0)