Skip to content

Commit

Permalink
Little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuluPro committed Mar 29, 2016
1 parent 9d02e72 commit b91ed87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbbackup/tests/commands/test_dbbackup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_encrypt(self):

def test_path(self):
self.command.path = '/tmp/foo.bak'
self.command.save_new_backup(TEST_DATABASE)
self.command._save_new_backup(TEST_DATABASE)
self.assertTrue(os.path.exists(self.command.path))
# tearDown
os.remove(self.command.path)
Expand Down
2 changes: 1 addition & 1 deletion dbbackup/tests/commands/test_dbrestore.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_decrypt(self, *args):

def test_path(self, *args):
self.command.path = COMPRESSED_FILE
self.command.restore_backup()
self.command._restore_backup()


class DbrestoreCommandGetDatabaseTest(TestCase):
Expand Down

0 comments on commit b91ed87

Please sign in to comment.