Skip to content

Commit

Permalink
Remove unneeded braces from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bitzoic committed Oct 10, 2022
1 parent 446f6a7 commit ab46610
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/as_bytes.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{as_bytes},
abi_calls::as_bytes,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/capacity.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{capacity},
abi_calls::capacity,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/clear.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{clear},
abi_calls::clear,
test_helpers::setup,
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{from_utf8},
abi_calls::from_utf8,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/insert.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{insert},
abi_calls::insert,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/is_empty.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{is_empty},
abi_calls::is_empty,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/len.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{len},
abi_calls::len,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/new.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{new},
abi_calls::new,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/nth.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{nth},
abi_calls::nth,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/pop.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{pop},
abi_calls::pop,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/push.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{push},
abi_calls::push,
test_helpers::setup,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/test_projects/string/tests/functions/remove.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{remove},
abi_calls::remove,
test_helpers::setup,
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::string::tests::utils::{
abi_calls::{with_capacity},
abi_calls::with_capacity,
test_helpers::setup,
};

Expand Down

0 comments on commit ab46610

Please sign in to comment.