Skip to content

Commit

Permalink
Test denominator units using the correct syntax (#2027)
Browse files Browse the repository at this point in the history
* use parentheses
  • Loading branch information
Goodwine authored Oct 10, 2024
1 parent 83bd499 commit 60c0ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/core_functions/math/unit.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ a {b: math.unit(1px * 1em / 1rad / 1s)}

<===> numerator_and_denominator/multiple/output.css
a {
b: "px*em/rad*s";
b: "px*em/(rad*s)";
}

<===> numerator_and_denominator/multiple/warning
Expand Down
2 changes: 1 addition & 1 deletion spec/libsass/units/simple.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ div {
div {
hey: 370866.1417322835pt;
ho: true;
hoo: "px/fu*emu*gnu";
hoo: "px/(fu*emu*gnu)";
hee: "cm^-1";
}

Expand Down

0 comments on commit 60c0ede

Please sign in to comment.