-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-106194: Rename duplicated tests in test_curses
#106196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Sorry, @sobolevn and @hugovk, I could not cleanly backport this to |
GH-106216 is a backport of this pull request to the 3.12 branch. |
…06196) (cherry picked from commit 3fb7c60) Co-authored-by: Nikita Sobolev <[email protected]>
#106216) Co-authored-by: Nikita Sobolev <[email protected]>
These tests were added in this bug fix: #103783, which didn't get backported to 3.11 for some reason. I'll ask over there if it should be back backported, and if so, this test fix should be included. |
Based on tests near the problematic ones, we can see
test_move_up
andtest_move_down
.Source:
cpython/Lib/test/test_curses.py
Lines 1378 to 1390 in bbf722d
So, I think it is safe to just replace them with
test_move_left
andtest_move_right
.test_curses
has duplicated tests #106194