Skip to content

Commit

Permalink
fix: make fmt
Browse files Browse the repository at this point in the history
Signed-off-by: zongz <zongzhe1024@163.com>
  • Loading branch information
zong-zhe committed Jan 14, 2025
1 parent 579fb23 commit 94786b2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions kclvm/runner/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,14 @@ fn test_kcl_issue_1799() {
assert!(res.is_ok());
assert_eq!(
res.as_ref().unwrap().yaml_result,
format!("a: {}", main_test_path.parent().unwrap().canonicalize().unwrap().adjust_canonicalization())
);
format!(
"a: {}",
main_test_path
.parent()
.unwrap()
.canonicalize()
.unwrap()
.adjust_canonicalization()
)
);
}

0 comments on commit 94786b2

Please sign in to comment.