From c0c36ecf3340dede2cca51f043f34cbb3a953510 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 1 May 2020 08:17:13 -0700 Subject: [PATCH 1/2] bump libsass to 3.6.4 --- libsass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsass b/libsass index e1c16e09..8d312a1c 160000 --- a/libsass +++ b/libsass @@ -1 +1 @@ -Subproject commit e1c16e09b4a953757a15149deaaf28a3fd81dc97 +Subproject commit 8d312a1c91bb7dd22883ebdfc829003f75a82396 From 57967f0bf021f3f8adcc41fefee0ff9912e32a67 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 1 May 2020 08:37:07 -0700 Subject: [PATCH 2/2] update test for change in error pointer I believe this to be a bug so I've opened https://github.com/sass/libsass/issues/3092 --- sasstests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sasstests.py b/sasstests.py index 45edc24a..79b5837d 100644 --- a/sasstests.py +++ b/sasstests.py @@ -1630,11 +1630,12 @@ def test_stack_trace_formatting(): raise AssertionError('expected to raise CompileError') except sass.CompileError: tb = traceback.format_exc() + # TODO: https://github.com/sass/libsass/issues/3092 assert tb.endswith( 'CompileError: Error: Invalid CSS after "a{☃": expected "{", was ""\n' - ' on line 1:3 of stdin\n' + ' on line 1:5 of stdin\n' '>> a{☃\n' - ' --^\n\n', + ' ----^\n\n', )