File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2187,7 +2187,7 @@ def test_issue_132(self):
21872187 # Clean after yourself
21882188 self .del_test_dir (module_name , fname )
21892189
2190- # @unittest.skip("skip")
2190+ @unittest .skip ("skip" )
21912191 def test_issue_132_1 (self ):
21922192 """
21932193 https://github.com/postgrespro/pg_probackup/issues/132
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ def make_simple_node(
328328
329329 # set major version
330330 with open (os .path .join (node .data_dir , 'PG_VERSION' )) as f :
331- node .major_version = int (f .read ().rstrip ())
331+ node .major_version = str (f .read ().rstrip ())
332332
333333 # Sane default parameters
334334 options = {}
Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ def test_take_backup_from_delayed_replica(self):
411411 replica , {'recovery_min_apply_delay' : '300s' })
412412 else :
413413 replica .append_conf (
414- 'postgresql.auto .conf' ,
414+ 'recovery .conf' ,
415415 'recovery_min_apply_delay = 300s' )
416416
417417 replica .stop ()
You can’t perform that action at this time.
0 commit comments