Skip to content

Commit

Permalink
fix: Arc imports in tests (why even?)
Browse files Browse the repository at this point in the history
  • Loading branch information
decahedron1 committed Feb 21, 2024
1 parent a425dc7 commit 75aa918
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/session/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ macro_rules! inputs {

#[cfg(test)]
mod tests {
use std::collections::HashMap;
use std::{collections::HashMap, sync::Arc};

use crate::*;

Expand Down
2 changes: 2 additions & 0 deletions src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,8 @@ pub(crate) unsafe fn extract_data_type_from_map_info(info_ptr: *const ort_sys::O

#[cfg(test)]
mod tests {
use std::sync::Arc;

use ndarray::{ArcArray1, Array1, CowArray};

use crate::*;
Expand Down

0 comments on commit 75aa918

Please sign in to comment.