summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2016-04-18 22:29:52 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2016-04-18 22:29:52 -0700
commitc008307dc4451b95fd2ca24e2562943cd0c66d45 (patch)
tree09d42bca118bb5d0eff88cf8f1b68eb7646b0149
parentddd811bfe0f39ddf32eb15ab6e3d6abe5eac8988 (diff)
downloadnatsort-c008307dc4451b95fd2ca24e2562943cd0c66d45.tar.gz
Fixed old accidental bug in bytes parsing.
-rw-r--r--test_natsort/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_natsort/test_utils.py b/test_natsort/test_utils.py
index 5156dff..e48c3c5 100644
--- a/test_natsort/test_utils.py
+++ b/test_natsort/test_utils.py
@@ -817,7 +817,7 @@ def test__natsort_key_with_GROUPLETTERS_and_LOWERCASEFIRST_inverts_text_first_th
def test__natsort_key_with_bytes_input_only_applies_LOWERCASEFIRST_or_IGNORECASE_and_returns_in_tuple():
if sys.version[0] == '3':
assert _natsort_key(b'Apple56', None, ns.I) == (b'Apple56',)
- assert _natsort_key(b'Apple56', None, ns.LF) == (b'aPPLE56',)
+ assert _natsort_key(b'Apple56', None, ns.LF) == (b'Apple56',)
assert _natsort_key(b'Apple56', None, ns.IC) == (b'apple56',)
assert _natsort_key(b'Apple56', None, ns.G) == (b'Apple56',)
else: