summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/tests/functions/test_extra.py2
-rw-r--r--scss/tests/test_expression.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/scss/tests/functions/test_extra.py b/scss/tests/functions/test_extra.py
index af15d8c..8940e94 100644
--- a/scss/tests/functions/test_extra.py
+++ b/scss/tests/functions/test_extra.py
@@ -7,7 +7,7 @@ tested, rather than the parsing or type system.
from __future__ import absolute_import
from __future__ import unicode_literals
-import scss.functions.extra as libextra
+import scss.extension.extra as libextra
from scss.types import Boolean, Color, Number
diff --git a/scss/tests/test_expression.py b/scss/tests/test_expression.py
index 199d9b7..0a860cf 100644
--- a/scss/tests/test_expression.py
+++ b/scss/tests/test_expression.py
@@ -47,8 +47,7 @@ def test_reference_operations():
assert calc('$width/2') == Number(500, "px") # uses a variable; does division
assert calc('(500px/2)') == Number(250, "px") # uses parens; does division
assert calc('5px + 8px/2px') == Number(9, "px") # uses +; does division
- # TODO: Ruby doesn't include these spaces
- assert calc('#{$font-size}/#{$line-height}') == String('12px / 30px')
+ assert calc('#{$font-size}/#{$line-height}') == String('12px/30px')
# uses #{}; does no division
# Color operations