diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-21 09:35:37 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-21 09:35:37 +0100 |
commit | 5485d9655e2ab3a6d04e5f69b246f5db4d2c5936 (patch) | |
tree | 84bb1e825656d4c523b65edc5d7780fbb060c8cc /tests/construction.rs | |
parent | e4a1ac5a04d021ef026c559354e9913ae59864d8 (diff) | |
download | ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.tar.gz ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.tar.xz ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.zip |
Code formatting
Diffstat (limited to 'tests/construction.rs')
-rw-r--r-- | tests/construction.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/construction.rs b/tests/construction.rs index 459e5a8..698d06a 100644 --- a/tests/construction.rs +++ b/tests/construction.rs @@ -1,7 +1,9 @@ mod common; -use common::{ new_ads1013, destroy_ads1013, new_ads1113, destroy_ads1113, - new_ads1014, destroy_ads1014, new_ads1114, destroy_ads1114, - new_ads1015, destroy_ads1015, new_ads1115, destroy_ads1115 }; +use common::{ + new_ads1013, destroy_ads1013, new_ads1113, destroy_ads1113, + new_ads1014, destroy_ads1014, new_ads1114, destroy_ads1114, + new_ads1015, destroy_ads1015, new_ads1115, destroy_ads1115 +}; macro_rules! impl_tests { ($IC:ident, $create:ident, $destroy:ident) => { @@ -13,7 +15,7 @@ macro_rules! impl_tests { $destroy(dev); } } - } + }; } impl_tests!(ads1013, new_ads1013, destroy_ads1013); |