Skip to content

Commit 46fe463

Browse files
committed
f update db-tests
1 parent a64e7e9 commit 46fe463

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

db-tests/Cargo.lock

Lines changed: 16 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

db-tests/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ edition = "2018"
66

77
[dependencies]
88
codegen = { version = "0.1.0", path = "../codegen" }
9-
env_logger = "0.6.1"
9+
env_logger = "0.7.0"
1010
futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", rev = "744ece9", features = ["compat"] }
11-
lazy_static = "1.3.0"
12-
rand = "0.6.5"
11+
lazy_static = "1.4.0"
12+
log="0.4"
13+
rand = "0.7.2"
1314
syncstorage = { version = "0.1.0", path = "../", features = ["db_test"] }
1415

db-tests/src/batch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async fn append_commit() -> Result<()> {
143143
.compat()
144144
.await?;
145145

146-
debug!("result", &result);
146+
debug!("result: {:?}", &result);
147147
assert!(result.success.contains(&"b0".to_owned()));
148148
assert!(result.success.contains(&"b2".to_owned()));
149149

0 commit comments

Comments
 (0)