From 7b836dd27c844383a3ee4834e8f52378bfd2d0f1 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 17 Jan 2017 19:27:52 +0100 Subject: [PATCH] become rustfmt resistant --- tests/consts.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/consts.rs b/tests/consts.rs index 899eb45a7..d4a4ef8a3 100644 --- a/tests/consts.rs +++ b/tests/consts.rs @@ -90,7 +90,8 @@ fn test_ops() { assert_eq!(half_any, half32); assert_eq!(half_any, half64); - assert_eq!(half32, half64); // for transitivity + // for transitivity + assert_eq!(half32, half64); assert_eq!(Constant::Int(ConstInt::Infer(0)), Constant::Int(ConstInt::U8(0))); assert_eq!(Constant::Int(ConstInt::Infer(0)), Constant::Int(ConstInt::I8(0)));