Skip to content

Commit 31d5e16

Browse files
committed
Merge pull request #64 from asottile/32bugfixes
3.2.1 and 3.2.2
2 parents 361ac6d + d7ea72f commit 31d5e16

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

docs/changes.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Version 0.8.0
66

77
To be released.
88

9-
- Follow up the libsass upstream: 3.2.0 --- See the `release note`__ of Libsass.
10-
[:issue:`61`, :issue:`52`, :issue:`56`, :issue:`58`, :issue:`62`
9+
- Follow up the libsass upstream: 3.2.2 --- See the release notes of Libsass
10+
3.2.0__, 3.2.1__, and 3.2.2__.
11+
[:issue:`61`, :issue:`52`, :issue:`56`, :issue:`58`, :issue:`62`, :issue:`64`
1112
by Anthony Sottile]
1213

1314
- Compact and expanded output styles [:issue:`37`]
@@ -25,6 +26,8 @@ To be released.
2526
with level ``ERROR``. [:issue:`42`]
2627

2728
__ https://github.com/sass/libsass/releases/tag/3.2.0
29+
__ https://github.com/sass/libsass/releases/tag/3.2.1
30+
__ https://github.com/sass/libsass/releases/tag/3.2.2
2831

2932

3033
Version 0.7.0

sasstests.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ def test_raises(self):
10151015
r'^Error: error in C function raises: \n'
10161016
r' Traceback \(most recent call last\):\n'
10171017
r'.+'
1018-
r'AssertionError: foo\n\n'
1018+
r'AssertionError: foo\n\n\n'
10191019
r' Backtrace:\n'
10201020
r' \tstdin:1, in function `raises`\n'
10211021
r' \tstdin:1\n'
@@ -1028,7 +1028,7 @@ def test_raises(self):
10281028
def test_warning(self):
10291029
with assert_raises_compile_error(
10301030
'Error: warning in C function returns_warning: '
1031-
'This is a warning\n'
1031+
'This is a warning\n\n'
10321032
' Backtrace:\n'
10331033
' \tstdin:1, in function `returns_warning`\n'
10341034
' \tstdin:1\n'
@@ -1040,7 +1040,8 @@ def test_warning(self):
10401040

10411041
def test_error(self):
10421042
with assert_raises_compile_error(
1043-
'Error: error in C function returns_error: This is an error\n'
1043+
'Error: error in C function returns_error: '
1044+
'This is an error\n\n'
10441045
' Backtrace:\n'
10451046
' \tstdin:1, in function `returns_error`\n'
10461047
' \tstdin:1\n'
@@ -1064,7 +1065,7 @@ def test_returns_unknown_object(self):
10641065
' - dict\n'
10651066
' - SassMap\n'
10661067
' - SassWarning\n'
1067-
' - SassError\n\n'
1068+
' - SassError\n\n\n'
10681069
' Backtrace:\n'
10691070
' \tstdin:1, in function `returns_unknown`\n'
10701071
' \tstdin:1\n'

0 commit comments

Comments
 (0)