Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/tools/tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_set_locale(self):
enc = codecs.lookup(enc).name
new_locale = lang, enc

if not tm._can_set_locale('.'.join(new_locale)):
if not tm._can_set_locale(new_locale):
with tm.assertRaises(locale.Error):
with tm.set_locale(new_locale):
pass
Expand Down