refactor: prevent raise condition in ci

This commit is contained in:
zhom
2026-02-02 01:40:58 +04:00
parent 288685030a
commit 2f0217e8ed
3 changed files with 36 additions and 4 deletions
+2 -4
View File
@@ -286,10 +286,8 @@ fn test_vpn_storage_import() {
// Helper Functions
// ============================================================================
fn create_test_storage(_temp_dir: &tempfile::TempDir) -> VpnStorage {
// VpnStorage::new() uses the default path
// TODO: Pass temp_dir path when VpnStorage supports custom paths
VpnStorage::new()
fn create_test_storage(temp_dir: &tempfile::TempDir) -> VpnStorage {
VpnStorage::with_dir(temp_dir.path())
}
// ============================================================================