From: andycochran Date: Wed, 7 Dec 2016 03:12:40 +0000 (-0500) Subject: fix Sass Unit Test for ratio-to-percentage function X-Git-Tag: v6.3.0-rc2~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9450%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix Sass Unit Test for ratio-to-percentage function --- diff --git a/test/sass/_components.scss b/test/sass/_components.scss index 90d284865..0e8bf0e70 100644 --- a/test/sass/_components.scss +++ b/test/sass/_components.scss @@ -1,13 +1,14 @@ @import "true"; +@import '../../scss/util/math'; @import '../../scss/global'; @import '../../scss/components/responsive-embed'; @import '../../scss/grid/grid'; @include test-module('Components') { - @include test('Responsive Embed [function]') { - $test: responsive-embed(3 by 4); + @include test('Ratio to Percentage [function]') { + $test: ratio-to-percentage(3 by 4); $expect: 4 / 3 * 100%; @include assert-equal($test, $expect,