1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-08 14:28:36 +02:00

tests: minor fix

This commit is contained in:
Grigory Smolkin 2018-01-18 18:56:33 +03:00
parent 9e44d505bc
commit 1fbea2dc14

View File

@ -336,7 +336,7 @@ class BackupTest(ProbackupTest, unittest.TestCase):
# open log file and check
with open(os.path.join(backup_dir, 'log', 'pg_probackup.log')) as f:
log_content = f.read()
self.assertIn('block 1, try fetching via SQL', log_content)
self.assertIn('block 1, try to fetch via SQL', log_content)
self.assertIn('SELECT pg_ptrack_get_block', log_content)
f.close