Skip to content

Commit b91ed87

Browse files
committed
Little fix
1 parent 9d02e72 commit b91ed87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dbbackup/tests/commands/test_dbbackup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_encrypt(self):
4848

4949
def test_path(self):
5050
self.command.path = '/tmp/foo.bak'
51-
self.command.save_new_backup(TEST_DATABASE)
51+
self.command._save_new_backup(TEST_DATABASE)
5252
self.assertTrue(os.path.exists(self.command.path))
5353
# tearDown
5454
os.remove(self.command.path)

dbbackup/tests/commands/test_dbrestore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_decrypt(self, *args):
7272

7373
def test_path(self, *args):
7474
self.command.path = COMPRESSED_FILE
75-
self.command.restore_backup()
75+
self.command._restore_backup()
7676

7777

7878
class DbrestoreCommandGetDatabaseTest(TestCase):

0 commit comments

Comments
 (0)