Skip to content

Commit 62202cf

Browse files
authored
Merge pull request #6083 from hstove/fix/cargo-check-tests-fix
fix: cargo check --tests warning
2 parents 16f50a8 + a7e98cb commit 62202cf

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
@@ -1963,7 +1963,7 @@ mod tests {
19631963
#[test]
19641964
pub fn create_md_index() {
19651965
let path_db = "/tmp/stacks-node-tests/creat_md_index";
1966-
std::fs::remove_dir_all(path_db);
1966+
let _ = std::fs::remove_dir_all(path_db);
19671967
let mut path = PathBuf::from(path_db);
19681968

19691969
std::fs::create_dir_all(&path).unwrap();
@@ -2085,7 +2085,7 @@ mod tests {
20852085

20862086
// S1G2081040G2081040G2081040G208105NK8PE5 is the transient address
20872087
let contract = "
2088-
(begin
2088+
(begin
20892089
(asserts! (is-eq tx-sender 'S1G2081040G2081040G2081040G208105NK8PE5)
20902090
(err tx-sender))
20912091

0 commit comments

Comments
 (0)