summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-06-15 18:45:27 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-06-15 18:45:27 (GMT)
commit951725368dd672bacec4286849101a9e57a71e2b (patch)
tree151be1c3c074a69e24380f3eaba50a9a22410021 /Lib
parent7512bc5bdddf5f01d8b4da37a8c0a50fb6d6ebe5 (diff)
downloadcpython-951725368dd672bacec4286849101a9e57a71e2b.zip
cpython-951725368dd672bacec4286849101a9e57a71e2b.tar.gz
cpython-951725368dd672bacec4286849101a9e57a71e2b.tar.bz2
[Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_curses.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py
index fa57e29..67f3c57 100644
--- a/Lib/test/test_curses.py
+++ b/Lib/test/test_curses.py
@@ -107,6 +107,7 @@ def window_funcs(stdscr):
stdscr.scroll(2)
stdscr.scroll(-3)
+ stdscr.move(12, 2)
stdscr.setscrreg(10,15)
win3 = stdscr.subwin(10,10)
win3 = stdscr.subwin(10,10, 5,5)
@@ -179,7 +180,7 @@ def module_funcs(stdscr):
curses.init_pair(2, 1,1)
curses.color_content(1)
curses.color_pair(2)
- curses.pair_content(curses.COLOR_PAIRS)
+ curses.pair_content(curses.COLOR_PAIRS - 1)
curses.pair_number(0)
if hasattr(curses, 'use_default_colors'):