@@ -149,13 +149,11 @@ def test_incremental_backup_without_full(self):
149
149
repr (self .output ), self .cmd ))
150
150
except ProbackupException as e :
151
151
self .assertTrue (
152
- "WARNING: Valid backup on current timeline 1 is not found" in e .message and
152
+ "WARNING: Valid full backup on current timeline 1 is not found" in e .message and
153
153
"ERROR: Create new full backup before an incremental one" in e .message ,
154
154
"\n Unexpected Error Message: {0}\n CMD: {1}" .format (
155
155
repr (e .message ), self .cmd ))
156
156
157
- sleep (1 )
158
-
159
157
try :
160
158
self .backup_node (backup_dir , 'node' , node , backup_type = "ptrack" )
161
159
# we should die here because exception is what we expect to happen
@@ -166,7 +164,7 @@ def test_incremental_backup_without_full(self):
166
164
repr (self .output ), self .cmd ))
167
165
except ProbackupException as e :
168
166
self .assertTrue (
169
- "WARNING: Valid backup on current timeline 1 is not found" in e .message and
167
+ "WARNING: Valid full backup on current timeline 1 is not found" in e .message and
170
168
"ERROR: Create new full backup before an incremental one" in e .message ,
171
169
"\n Unexpected Error Message: {0}\n CMD: {1}" .format (
172
170
repr (e .message ), self .cmd ))
@@ -230,7 +228,7 @@ def test_incremental_backup_corrupt_full(self):
230
228
repr (self .output ), self .cmd ))
231
229
except ProbackupException as e :
232
230
self .assertTrue (
233
- "WARNING: Valid backup on current timeline 1 is not found" in e .message and
231
+ "WARNING: Valid full backup on current timeline 1 is not found" in e .message and
234
232
"ERROR: Create new full backup before an incremental one" in e .message ,
235
233
"\n Unexpected Error Message: {0}\n CMD: {1}" .format (
236
234
repr (e .message ), self .cmd ))
@@ -2352,7 +2350,7 @@ def test_parent_choosing_2(self):
2352
2350
repr (self .output ), self .cmd ))
2353
2351
except ProbackupException as e :
2354
2352
self .assertTrue (
2355
- 'WARNING: Valid backup on current timeline 1 is not found' in e .message and
2353
+ 'WARNING: Valid full backup on current timeline 1 is not found' in e .message and
2356
2354
'ERROR: Create new full backup before an incremental one' in e .message ,
2357
2355
'\n Unexpected Error Message: {0}\n CMD: {1}' .format (
2358
2356
repr (e .message ), self .cmd ))
@@ -3404,7 +3402,7 @@ def test_missing_replication_permission_1(self):
3404
3402
return_id = False )
3405
3403
3406
3404
self .assertIn (
3407
- 'WARNING: Valid backup on current timeline 2 is not found, trying to look up on previous timelines' ,
3405
+ 'WARNING: Valid full backup on current timeline 2 is not found, trying to look up on previous timelines' ,
3408
3406
output )
3409
3407
3410
3408
self .assertIn (
0 commit comments