Skip to content

Commit

Permalink
Fix broken calc_interpolation test
Browse files Browse the repository at this point in the history
  • Loading branch information
jathak committed Jul 17, 2024
1 parent faea6f5 commit 988a53f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/migrators/calc_interpolation/calc_remove_interpolation.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ $d: 5;
.a { .b: calc($b * #{$c + 1}); }

// More than one interpolations
.a {
.b: calc($b - #{$c + 1} + #{$d});
.a {
.b: calc($b - #{$c + 1} + #{$d});
.c: calc(100% - #{$TABLE_TITLE + 2px});
}

Expand All @@ -35,9 +35,9 @@ $d: 5;
.a { .b: calc($b * ($c + 1)); }

// More than one interpolations
.a {
.b: calc($b - ($c + 1) + $d);
.c: calc(100% - ($TABLE-TITLE + 2px));
.a {
.b: calc($b - ($c + 1) + $d);
.c: calc(100% - ($TABLE_TITLE + 2px));
}

// Nested
Expand Down

0 comments on commit 988a53f

Please sign in to comment.