Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[LIB-758] correct create test;
  • Loading branch information
opalczynski committed Jun 16, 2016
commit 9b177a3cd01f0aab020bf1469db0e991b11514b7
2 changes: 1 addition & 1 deletion tests/integration_test_backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _test_backup_create(self, backup_type='full', query_args=None):
new_backup = backup_model()
backup_test = new_backup.save()

backup = Backup.please.get(id=backup_test.id)
backup = backup_model.please.get(id=backup_test.id)
self.assertTrue(backup)
self.assertEqual(backup.id, backup_test.id)
self.assertEqual(backup.author.email, self.API_EMAIL)
Expand Down