Run black code formatter
This commit is contained in:
parent
d2e52694f5
commit
ad651cd804
@ -8,12 +8,7 @@ from pathlib import Path
|
||||
from unittest.mock import patch
|
||||
|
||||
from hypothesis import given
|
||||
from hypothesis.strategies import (
|
||||
from_regex,
|
||||
iterables,
|
||||
one_of,
|
||||
text,
|
||||
)
|
||||
from hypothesis.strategies import from_regex, iterables, one_of, text
|
||||
|
||||
from rbackup.package_managers.packagemanager import PackageManager
|
||||
|
||||
|
@ -239,21 +239,21 @@ class TestRepositoryCleanup(unittest.TestCase):
|
||||
self.mocked_shutil.rmtree.assert_not_called()
|
||||
|
||||
def test_removes_metadata_by_default(self):
|
||||
repo = Repository('backup')
|
||||
repo = Repository("backup")
|
||||
|
||||
repo.cleanup()
|
||||
|
||||
self.mocked_path.return_value.unlink.assert_called_once()
|
||||
|
||||
def test_removes_snapshots(self):
|
||||
repo = Repository('backup')
|
||||
repo = Repository("backup")
|
||||
|
||||
repo.cleanup(remove_snapshots=True)
|
||||
|
||||
self.mocked_shutil.rmtree.assert_called_once()
|
||||
|
||||
def test_removes_repo_dir(self):
|
||||
repo = Repository('backup')
|
||||
repo = Repository("backup")
|
||||
|
||||
repo.cleanup(remove_repo_dir=True)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user