Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 7ee3d69

Browse files
committed
Not needed on windows any more?
1 parent 6ff7491 commit 7ee3d69

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

sasstests.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,6 @@ def assert_source_map_equal(self, expected, actual):
133133
expected = json.loads(expected)
134134
if isinstance(actual, string_types):
135135
actual = json.loads(actual)
136-
if sys.platform == 'win32': # pragma: no cover (windows)
137-
assert expected['mappings'] != actual['mappings']
138-
# On Windows the result of "mappings" is strange;
139-
# seems a bug of libsass itself
140-
expected.pop('mappings', None)
141-
actual.pop('mappings', None)
142136
assert expected == actual
143137

144138
def assert_source_map_file(self, expected, filename):

0 commit comments

Comments
 (0)