From: Mika Murtojarvi Date: Wed, 27 Nov 2013 11:29:51 +0000 (+0200) Subject: Move a sass test that no longer fails. X-Git-Tag: 7.1.9~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ac492e46b70de9314083492bd8e136e1c8398e3;p=vaadin-framework.git Move a sass test that no longer fails. Change-Id: Ic83330cbea688be1c30aa89cad9524016617be8d --- diff --git a/theme-compiler/tests/resources/sasslang/css/369-test_mixins_with_empty_args.css b/theme-compiler/tests/resources/sasslang/css/369-test_mixins_with_empty_args.css new file mode 100644 index 0000000000..234d524066 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/369-test_mixins_with_empty_args.css @@ -0,0 +1,3 @@ +.foo { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/scss/369-test_mixins_with_empty_args.scss b/theme-compiler/tests/resources/sasslang/scss/369-test_mixins_with_empty_args.scss new file mode 100644 index 0000000000..f608979293 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/369-test_mixins_with_empty_args.scss @@ -0,0 +1,3 @@ +@mixin foo() {a: b} + +.foo {@include foo();} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/369-test_mixins_with_empty_args.css b/theme-compiler/tests/resources/sasslangbroken/css/369-test_mixins_with_empty_args.css deleted file mode 100644 index 234d524066..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/369-test_mixins_with_empty_args.css +++ /dev/null @@ -1,3 +0,0 @@ -.foo { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/369-test_mixins_with_empty_args.scss b/theme-compiler/tests/resources/sasslangbroken/scss/369-test_mixins_with_empty_args.scss deleted file mode 100644 index f608979293..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/369-test_mixins_with_empty_args.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin foo() {a: b} - -.foo {@include foo();}