From 6718cd81d5a9380fca64d2e66ccc0e8d557a3f35 Mon Sep 17 00:00:00 2001 From: Pierre Fenoll Date: Wed, 23 Mar 2022 01:14:41 +0100 Subject: [PATCH] fix tests Signed-off-by: Pierre Fenoll --- egui_node_graph/src/color_hex_utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egui_node_graph/src/color_hex_utils.rs b/egui_node_graph/src/color_hex_utils.rs index e846f0a..0479a8c 100644 --- a/egui_node_graph/src/color_hex_utils.rs +++ b/egui_node_graph/src/color_hex_utils.rs @@ -88,7 +88,7 @@ mod tests { ); assert_eq!( color_to_hex(Color32::from_rgba_premultiplied(226, 226, 226, 119)), - "e2e2e277".to_string() + "#e2e2e277".to_string() ); } }