From 1a7b13228d4705d3ea5307f6d9157b75a9bfab40 Mon Sep 17 00:00:00 2001 From: Zeeshan Lakhani Date: Tue, 9 Jul 2024 01:56:57 +0000 Subject: [PATCH] test assert len --- dev-tools/omdb/tests/test_all_output.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-tools/omdb/tests/test_all_output.rs b/dev-tools/omdb/tests/test_all_output.rs index aa474c7340..6a959d726a 100644 --- a/dev-tools/omdb/tests/test_all_output.rs +++ b/dev-tools/omdb/tests/test_all_output.rs @@ -47,7 +47,11 @@ fn assert_oximeter_list_producers_output( && line.contains(&test_producer.to_string()) }); - assert!(found, "test producer {} and producer UUID {} not found in oximeter list-producers output", test_producer, PRODUCER_UUID); + assert!( + found, + "test producer {} and producer UUID {} not found on line together", + test_producer, PRODUCER_UUID + ); } #[tokio::test]