소스 검색

Set COLUMNS & LINES as if it was a terminal

Abogical 8 년 전
부모
커밋
1362d2e90f
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/borg/testsuite/helpers.py

+ 2 - 0
src/borg/testsuite/helpers.py

@@ -904,6 +904,8 @@ def test_yes_env_output(capfd, monkeypatch):
 
 
 def test_progress_percentage_sameline(capfd):
+    os.environ['COLUMNS'] = '4'
+    os.environ['LINES'] = '1'
     pi = ProgressIndicatorPercent(1000, step=5, start=0, msg="%3.0f%%")
     pi.logger.setLevel('INFO')
     pi.show(0)