Skip to content

Commit

Permalink
Update test to be case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Oct 12, 2023
1 parent 26285a2 commit 0df3c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cssutils/tests/test_encutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def test_tryEncodings(self):
# ('utf-8', u'\u1111'.encode('utf-8'))
]
for exp, test in tests:
assert exp == encutils.tryEncodings(test)
assert exp == encutils.tryEncodings(test).lower()

def test_getEncodingInfo(self):
"encutils.getEncodingInfo"
Expand Down

0 comments on commit 0df3c6c

Please sign in to comment.