-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
TST: Fixed rcparams test_Issue_1713
test
#7328
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
TST: Fixed rcparams test_Issue_1713
test
#7328
Conversation
6ea55c0
to
e5cb3a6
Compare
@@ -224,16 +228,13 @@ def test_legend_edgecolor(): | |||
yield _legend_rcparam_helper, rc_dict, target, get_func | |||
|
|||
|
|||
def test_Issue_1713(): | |||
def test_unicode_parsing(): |
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.
UTF-8 is also Unicode (sort of), so this test is not really for just Unicode, per se.
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.
Yes, but it what the #1713 title says.
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.
I think that's more a symptom of Python 2-ness, "Unicode vs str", but it's not strictly correct.
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.
I much preferred the new title than the old.
e5cb3a6
to
70285e1
Compare
test_Issue_1713
test
test_Issue_1713
testtest_Issue_1713
test
test_Issue_1713
testtest_Issue_1713
test
TST: Fixed rcparams `test_Issue_1713` test
Backported to v2.x via 6dbbb98. |
Without the monkey-patching there is no good way to change locale on Windows (LANG env variable has no effect on it).
I also renamed the test to a meaningful name.
Closes #7281