Skip to content

Commit

Permalink
rm redundant Dmatrix imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed May 29, 2024
1 parent 70a0389 commit 211083d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ fn aggregate_to_groups_single_col(dists: &[f64], groups: &[usize], log_scale: &b
#[cfg(test)]
mod tests {
use super::*;
use nalgebra::DMatrix;

#[test]
fn test_uamutate() {
Expand Down
1 change: 0 additions & 1 deletion src/transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ pub fn transform_invert_values(values: &mut DMatrix<f64>, varname: &str) {
#[cfg(test)]
mod tests {
use super::*;
use nalgebra::DMatrix;

#[test]
fn test_transform_invert_values() {
Expand Down
1 change: 0 additions & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ pub fn resize_matrix(matrix: &DMatrix<f64>, new_rows: usize) -> DMatrix<f64> {
mod tests {
use super::*;
use approx::assert_abs_diff_eq;
use nalgebra::DMatrix;

#[test]
fn test_log_transform() {
Expand Down

0 comments on commit 211083d

Please sign in to comment.