We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c71c02 commit 7eb3702Copy full SHA for 7eb3702
integration_test/tests/wallet.rs
@@ -69,10 +69,6 @@ fn wallet__backup_wallet() {
69
let node = Node::with_wallet(Wallet::Default, &[]);
70
let file_path = integration_test::random_tmp_file();
71
72
- if file_path.exists() {
73
- fs::remove_file(&file_path).expect("removefile");
74
- }
75
-
76
node.client.backup_wallet(&file_path).expect("backupwallet");
77
assert!(file_path.exists(), "Backup file should exist at destination");
78
assert!(file_path.is_file(), "Backup destination should be a file");
0 commit comments