Skip to content

Commit a7e98cb

Browse files
committed
fix: cargo check --tests warning
1 parent 7d7e414 commit a7e98cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stackslib/src/clarity_vm/clarity.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1959,7 +1959,7 @@ mod tests {
19591959
#[test]
19601960
pub fn create_md_index() {
19611961
let path_db = "/tmp/stacks-node-tests/creat_md_index";
1962-
std::fs::remove_dir_all(path_db);
1962+
let _ = std::fs::remove_dir_all(path_db);
19631963
let mut path = PathBuf::from(path_db);
19641964

19651965
std::fs::create_dir_all(&path).unwrap();
@@ -2081,7 +2081,7 @@ mod tests {
20812081

20822082
// S1G2081040G2081040G2081040G208105NK8PE5 is the transient address
20832083
let contract = "
2084-
(begin
2084+
(begin
20852085
(asserts! (is-eq tx-sender 'S1G2081040G2081040G2081040G208105NK8PE5)
20862086
(err tx-sender))
20872087

0 commit comments

Comments
 (0)