From a3ed13b7dd3e917de70bfc0b85920a0e2f2d046d Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Mon, 4 Dec 2023 19:04:17 -0800 Subject: [PATCH] Update embedded/function_test --- test/embedded/function_test.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/embedded/function_test.dart b/test/embedded/function_test.dart index d927a780f..97e79f334 100644 --- a/test/embedded/function_test.dart +++ b/test/embedded/function_test.dart @@ -912,7 +912,7 @@ void main() { ..value = 1 ..numerators.addAll(["em", "px", "foo"])), inspect: true), - "1em*px*foo"); + "calc(1em * 1px * 1foo)"); }); test("with one denominator", () async { @@ -923,7 +923,7 @@ void main() { ..value = 1 ..denominators.add("em")), inspect: true), - "1em^-1"); + "calc(1 / 1em)"); }); test("with multiple denominators", () async { @@ -934,7 +934,7 @@ void main() { ..value = 1 ..denominators.addAll(["em", "px", "foo"])), inspect: true), - "1(em*px*foo)^-1"); + "calc(1 / 1em / 1px / 1foo)"); }); test("with numerators and denominators", () async { @@ -946,7 +946,7 @@ void main() { ..numerators.addAll(["em", "px"]) ..denominators.addAll(["s", "foo"])), inspect: true), - "1em*px/s*foo"); + "calc(1em * 1px / 1s / 1foo)"); }); });