Skip to content

Commit

Permalink
Only add in the test module if there's anything to test
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Jul 28, 2024
1 parent a22f922 commit 26b70b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub(crate) const Z0: f64 = -0.367_879_441_171_442_33;
// 1/sqrt(e)
pub(crate) const X0: f64 = 0.606_530_659_712_633_4;

#[cfg(test)]
#[cfg(all(test, any(feature = "24", feature = "50")))]
mod tets {
#[cfg(feature = "50")]
use super::accurate::{lambert_w_0 as lambert_w_0_50, lambert_w_m1 as lambert_w_m1_50};
Expand Down

0 comments on commit 26b70b9

Please sign in to comment.