Skip to content

Commit 22624ca

Browse files
authored
Remove the test feature from linera-core in linera-sdk. (#2506)
1 parent 37bc6c8 commit 22624ca

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

linera-client/src/chain_listener.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ where
191191
}
192192
Ok((certs, Some(new_timeout))) => {
193193
info!(
194-
"{} blocks created. I will try processing the inbox later based \
194+
"{} blocks created. Will try processing the inbox later based \
195195
on the given round timeout: {new_timeout:?}",
196196
certs.len(),
197197
);

linera-sdk/Cargo.toml

+8-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,13 @@ wasmtime = [
3232
"linera-storage/wasmtime",
3333
"linera-witty/wasmtime",
3434
]
35-
test = ["linera-base/test", "linera-views/test"]
35+
test = [
36+
"linera-base/test",
37+
"linera-core/test",
38+
"linera-sdk/test",
39+
"linera-storage/test",
40+
"linera-views/test",
41+
]
3642

3743
[dependencies]
3844
async-graphql.workspace = true
@@ -57,7 +63,7 @@ clap.workspace = true
5763
dashmap.workspace = true
5864
linera-base = { workspace = true, features = ["metrics"] }
5965
linera-chain = { workspace = true, features = ["metrics"] }
60-
linera-core = { workspace = true, features = ["test", "metrics", "wasmer"] }
66+
linera-core = { workspace = true, features = ["metrics", "wasmer"] }
6167
linera-execution = { workspace = true, features = ["fs", "metrics", "wasmer"] }
6268
linera-storage = { workspace = true, features = ["metrics", "wasmer"] }
6369
linera-witty = { workspace = true, features = ["test"] }

0 commit comments

Comments
 (0)