@@ -149,13 +149,11 @@ def test_incremental_backup_without_full(self):
149149 repr (self .output ), self .cmd ))
150150 except ProbackupException as e :
151151 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
153153 "ERROR: Create new full backup before an incremental one" in e .message ,
154154 "\n Unexpected Error Message: {0}\n CMD: {1}" .format (
155155 repr (e .message ), self .cmd ))
156156
157- sleep (1 )
158-
159157 try :
160158 self .backup_node (backup_dir , 'node' , node , backup_type = "ptrack" )
161159 # we should die here because exception is what we expect to happen
@@ -166,7 +164,7 @@ def test_incremental_backup_without_full(self):
166164 repr (self .output ), self .cmd ))
167165 except ProbackupException as e :
168166 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
170168 "ERROR: Create new full backup before an incremental one" in e .message ,
171169 "\n Unexpected Error Message: {0}\n CMD: {1}" .format (
172170 repr (e .message ), self .cmd ))
@@ -230,7 +228,7 @@ def test_incremental_backup_corrupt_full(self):
230228 repr (self .output ), self .cmd ))
231229 except ProbackupException as e :
232230 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
234232 "ERROR: Create new full backup before an incremental one" in e .message ,
235233 "\n Unexpected Error Message: {0}\n CMD: {1}" .format (
236234 repr (e .message ), self .cmd ))
@@ -2352,7 +2350,7 @@ def test_parent_choosing_2(self):
23522350 repr (self .output ), self .cmd ))
23532351 except ProbackupException as e :
23542352 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
23562354 'ERROR: Create new full backup before an incremental one' in e .message ,
23572355 '\n Unexpected Error Message: {0}\n CMD: {1}' .format (
23582356 repr (e .message ), self .cmd ))
@@ -3404,7 +3402,7 @@ def test_missing_replication_permission_1(self):
34043402 return_id = False )
34053403
34063404 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' ,
34083406 output )
34093407
34103408 self .assertIn (
0 commit comments