Skip to content

Commit b654cfa

Browse files
committed
fix: ci
1 parent c27b0eb commit b654cfa

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

crates/burn-import/src/burn/node/base.rs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,10 @@ pub(crate) mod tests {
401401
),
402402
));
403403

404-
graph.register_input_output(vec!["tensor1".to_string(), "tensor2".to_string()], vec![
405-
"tensor4".to_string(),
406-
]);
404+
graph.register_input_output(
405+
vec!["tensor1".to_string(), "tensor2".to_string()],
406+
vec!["tensor4".to_string()],
407+
);
407408

408409
let expected = quote! {
409410
use burn::{
@@ -486,9 +487,10 @@ pub(crate) mod tests {
486487
TensorType::new_float("output", 4),
487488
));
488489

489-
graph.register_input_output(vec!["tensor1".to_string(), "tensor2".to_string()], vec![
490-
"output".to_string(),
491-
]);
490+
graph.register_input_output(
491+
vec!["tensor1".to_string(), "tensor2".to_string()],
492+
vec!["output".to_string()],
493+
);
492494

493495
let expected = quote! {
494496
use burn::{

crates/onnx-ir/src/node/depth_to_space.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ pub fn depth_to_space_config(node: &Node) -> DepthToSpaceConfig {
104104
#[cfg(test)]
105105
mod tests {
106106
use super::*;
107+
use crate::ElementType;
107108
use crate::ir::NodeType;
108109
use crate::node::test_utils::NodeBuilder;
109-
use crate::ElementType;
110110

111111
/// Helper function to create test nodes with different repeat values
112112
fn create_test_node(

0 commit comments

Comments
 (0)