Skip to content

Commit

Permalink
REVERT ME: run ac tests even when autoconvert not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
jacg committed Sep 1, 2022
1 parent d536b67 commit eef466b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/impl_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ macro_rules! test {
// 2. append `_autoconvert` to the test name
(ac $test_name:ident [$lhs:expr] $op:tt $rhs:expr, $expected:expr) => {
paste::paste! {
#[cfg(feature = "autoconvert")]
//#[cfg(feature = "autoconvert")]
test!([<$test_name _ autoconvert>] [$lhs] $op $rhs, $expected);
}
};
(ac $test_name:ident $lhs:expr, $rhs:expr) => {
paste::paste! {
#[cfg(feature = "autoconvert")]
//#[cfg(feature = "autoconvert")]
test!([<$test_name _ autoconvert>] $lhs, $rhs);
}
};
Expand Down

0 comments on commit eef466b

Please sign in to comment.