Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sasstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,10 @@ def test_sass_warning_no_conversion(self):
warn = sass.SassWarning(u'error msg')
assert type(warn.msg) is text_type, type(warn.msg)

def test_sass_warning_no_conversion_bytes_message(self):
warn = sass.SassWarning(b'error msg')
assert type(warn.msg) is text_type, type(warn.msg)

def test_sass_error_no_conversion(self):
err = sass.SassError(u'error msg')
assert type(err.msg) is text_type, type(err.msg)
Expand Down