diff --git a/src/compiler/backend/tests.rs b/src/compiler/backend/tests.rs index e4be473..3104634 100644 --- a/src/compiler/backend/tests.rs +++ b/src/compiler/backend/tests.rs @@ -174,13 +174,13 @@ fn test_fun_ssa() { Instruction { result_id: None, op: "OpReturn".to_string(), - operands: vec![] + operands: vec![], }, Instruction { result_id: None, op: "OpFunctionEnd".to_string(), - operands: vec![] - } + operands: vec![], + }, ]; assert_eq!(res, res_spv); } @@ -207,4 +207,4 @@ fn test_fun_ssa_vec() { let res = res.body.unwrap(); println!("{:#?}", res); println!("{:#?}", module) -} \ No newline at end of file +}