From 44ab6c5235a38975d9c08d5d946c4af65047a924 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Thu, 7 Nov 2019 02:28:36 +0100 Subject: [PATCH] remove named tests Signed-off-by: Yoshua Wuyts --- tests/macros.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/macros.rs b/tests/macros.rs index 38760c6a2..f41c52ed3 100644 --- a/tests/macros.rs +++ b/tests/macros.rs @@ -14,11 +14,6 @@ fn with_args() { info!("hello {}", "cats",); } -#[test] -fn named_arg() { - info!("hello {value}", value = "cats"); -} - #[test] fn kv() { info!("hello {}", "cats", { @@ -26,11 +21,3 @@ fn kv() { cat_2: "nori", }); } - -#[test] -fn kv_and_named_arg() { - info!("hello {value}", value = "cats", { - cat_1: "chashu", - cat_2: "nori", - }); -}