From ab466102153d7732628561ed0c42f9d9b3b8bbe5 Mon Sep 17 00:00:00 2001 From: bitzoic Date: Mon, 10 Oct 2022 12:00:25 -0400 Subject: [PATCH] Remove unneeded braces from tests --- tests/src/test_projects/string/tests/functions/as_bytes.rs | 2 +- tests/src/test_projects/string/tests/functions/capacity.rs | 2 +- tests/src/test_projects/string/tests/functions/clear.rs | 2 +- tests/src/test_projects/string/tests/functions/from_utf8.rs | 2 +- tests/src/test_projects/string/tests/functions/insert.rs | 2 +- tests/src/test_projects/string/tests/functions/is_empty.rs | 2 +- tests/src/test_projects/string/tests/functions/len.rs | 2 +- tests/src/test_projects/string/tests/functions/new.rs | 2 +- tests/src/test_projects/string/tests/functions/nth.rs | 2 +- tests/src/test_projects/string/tests/functions/pop.rs | 2 +- tests/src/test_projects/string/tests/functions/push.rs | 2 +- tests/src/test_projects/string/tests/functions/remove.rs | 2 +- tests/src/test_projects/string/tests/functions/with_capacity.rs | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/src/test_projects/string/tests/functions/as_bytes.rs b/tests/src/test_projects/string/tests/functions/as_bytes.rs index 4fa04176..f2db0e06 100644 --- a/tests/src/test_projects/string/tests/functions/as_bytes.rs +++ b/tests/src/test_projects/string/tests/functions/as_bytes.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{as_bytes}, + abi_calls::as_bytes, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/capacity.rs b/tests/src/test_projects/string/tests/functions/capacity.rs index 92eca7e9..b8c9f3e8 100644 --- a/tests/src/test_projects/string/tests/functions/capacity.rs +++ b/tests/src/test_projects/string/tests/functions/capacity.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{capacity}, + abi_calls::capacity, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/clear.rs b/tests/src/test_projects/string/tests/functions/clear.rs index 85171df5..906568d5 100644 --- a/tests/src/test_projects/string/tests/functions/clear.rs +++ b/tests/src/test_projects/string/tests/functions/clear.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{clear}, + abi_calls::clear, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/from_utf8.rs b/tests/src/test_projects/string/tests/functions/from_utf8.rs index 4df1f6b4..23595fd1 100644 --- a/tests/src/test_projects/string/tests/functions/from_utf8.rs +++ b/tests/src/test_projects/string/tests/functions/from_utf8.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{from_utf8}, + abi_calls::from_utf8, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/insert.rs b/tests/src/test_projects/string/tests/functions/insert.rs index d77ba5be..57a78edd 100644 --- a/tests/src/test_projects/string/tests/functions/insert.rs +++ b/tests/src/test_projects/string/tests/functions/insert.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{insert}, + abi_calls::insert, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/is_empty.rs b/tests/src/test_projects/string/tests/functions/is_empty.rs index d365d2f7..804245fc 100644 --- a/tests/src/test_projects/string/tests/functions/is_empty.rs +++ b/tests/src/test_projects/string/tests/functions/is_empty.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{is_empty}, + abi_calls::is_empty, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/len.rs b/tests/src/test_projects/string/tests/functions/len.rs index f24a4fac..db4883d6 100644 --- a/tests/src/test_projects/string/tests/functions/len.rs +++ b/tests/src/test_projects/string/tests/functions/len.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{len}, + abi_calls::len, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/new.rs b/tests/src/test_projects/string/tests/functions/new.rs index 09696842..54cdf86f 100644 --- a/tests/src/test_projects/string/tests/functions/new.rs +++ b/tests/src/test_projects/string/tests/functions/new.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{new}, + abi_calls::new, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/nth.rs b/tests/src/test_projects/string/tests/functions/nth.rs index 09694fb6..86526e7c 100644 --- a/tests/src/test_projects/string/tests/functions/nth.rs +++ b/tests/src/test_projects/string/tests/functions/nth.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{nth}, + abi_calls::nth, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/pop.rs b/tests/src/test_projects/string/tests/functions/pop.rs index 2020f7d0..a143ebe4 100644 --- a/tests/src/test_projects/string/tests/functions/pop.rs +++ b/tests/src/test_projects/string/tests/functions/pop.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{pop}, + abi_calls::pop, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/push.rs b/tests/src/test_projects/string/tests/functions/push.rs index ebc54460..5c07e237 100644 --- a/tests/src/test_projects/string/tests/functions/push.rs +++ b/tests/src/test_projects/string/tests/functions/push.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{push}, + abi_calls::push, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/remove.rs b/tests/src/test_projects/string/tests/functions/remove.rs index ab841463..b9799e07 100644 --- a/tests/src/test_projects/string/tests/functions/remove.rs +++ b/tests/src/test_projects/string/tests/functions/remove.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{remove}, + abi_calls::remove, test_helpers::setup, }; diff --git a/tests/src/test_projects/string/tests/functions/with_capacity.rs b/tests/src/test_projects/string/tests/functions/with_capacity.rs index 16559b65..679d1a9d 100644 --- a/tests/src/test_projects/string/tests/functions/with_capacity.rs +++ b/tests/src/test_projects/string/tests/functions/with_capacity.rs @@ -1,5 +1,5 @@ use crate::string::tests::utils::{ - abi_calls::{with_capacity}, + abi_calls::with_capacity, test_helpers::setup, };