diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-02-15 22:15:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 22:15:49 (GMT) |
commit | d0204963ec87beb9732e924e464b8a6a1ef4d341 (patch) | |
tree | ddb53073c193ac20e4ccc26e24be2a4ea4aa10e0 /Lib/test/test_curses.py | |
parent | ab2d48163901c9635401db0f6d784c45482d17ec (diff) | |
download | cpython-d0204963ec87beb9732e924e464b8a6a1ef4d341.zip cpython-d0204963ec87beb9732e924e464b8a6a1ef4d341.tar.gz cpython-d0204963ec87beb9732e924e464b8a6a1ef4d341.tar.bz2 |
bpo-43231: Correctly calculate the curses color pair limit when checking for it (GH-24541)
Diffstat (limited to 'Lib/test/test_curses.py')
-rw-r--r-- | Lib/test/test_curses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index f6bd27d..0833c86 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -930,7 +930,7 @@ class TestCurses(unittest.TestCase): # range may be restricted, so we need to check if the limit is still # correct try: - curses.init_pair(pair_limit, 0, 0) + curses.init_pair(pair_limit - 1, 0, 0) except ValueError: pair_limit = curses.COLOR_PAIRS return pair_limit |