remove test path

This commit is contained in:
Divyansh Singh 2023-03-04 23:00:57 +05:30
parent c71eb60cd2
commit cf0275a3ed
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def restore_database_dump(database_config, log_prefix, location_config, dry_run,
return
try:
os.remove('/home/divyansh/Desktop/hello.txt')
os.remove(database_path)
logger.warn(f'{log_prefix}: Removed existing SQLite database at {database_path}')
except FileNotFoundError: # pragma: no cover
pass