Skip to content

Commit

Permalink
Print value if not expected
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuratczyk committed Jun 6, 2023
1 parent 5cbc85a commit ce06d24
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/queue_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,10 @@ fn test_list_queues_in_a_virtual_host() {
common::await_queue_metric_emission();

let result2 = rc.list_queues_in(vh_name);
assert!(result2.is_ok());
assert!(
result2.is_ok(),
"list_queues_in({}) returned {:?}",
vh_name,
result2
);
}

0 comments on commit ce06d24

Please sign in to comment.