Skip to content

Commit 0735c96

Browse files
committed
fix(hermes): fix test
1 parent 7423923 commit 0735c96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hermes/bin/src/ipfs/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pub(crate) fn hermes_ipfs_subscribe(
118118
} else {
119119
let handle = ipfs.pubsub_subscribe(&topic)?;
120120
ipfs.apps.added_topic_stream(topic.clone(), handle);
121-
tracing::trace!(app_name = %app_name, pubsub_topic = %topic, "added subscription topic stream");
121+
tracing::info!(app_name = %app_name, pubsub_topic = %topic, "added subscription topic stream");
122122
}
123123
ipfs.apps
124124
.added_app_topic_subscription(app_name.clone(), topic);

hermes/bin/tests/integration/tests/serial/ipfs_subscribe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn ipfs_subscribe() {
1818
// TODO[RC]: Build hermes just once for all tests
1919
utils::hermes::build();
2020

21-
utils::hermes::run_app(&temp_dir, &app_file_name).expect("failed to run hermes app");
21+
utils::hermes::run_app(&temp_dir, &app_file_name).expect_err("should fail to run hermes app");
2222

2323
assert!(utils::assert::app_logs_contain(
2424
&temp_dir,

0 commit comments

Comments
 (0)