From e1b3387246cd22be25a7fe81086255c1206cb8de Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Tue, 2 Jul 2024 16:07:44 +0200 Subject: [PATCH] Fix warning --- tests/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib.rs b/tests/lib.rs index 783edd52..e1e684cd 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -248,7 +248,7 @@ fn main() { assert_eq!(MyInt(50), MyInt(5) * 10); assert_eq!(DoubleUInt(5, 6) * 10, DoubleUInt(50, 60)); - // assert_eq!(DoubleUIntStruct{x:5, y:6} * 10, DoubleUIntStruct{x:50, y:60}); + assert_eq!(DoubleUIntStruct{x:5, y:6} * 10, DoubleUIntStruct{x:50, y:60}); let mut myint = MyInt(5); assert_eq!(5, *myint);