style(ivy): defeat clang format issue (#24479)
clang-format (on mac) has taken a disliking to this particular line, and rewrites one of the ɵ characters to an invalid Unicode sequence. PR Close #24479
This commit is contained in:
parent
a45fad3dd9
commit
0f7e4fae20
|
@ -530,7 +530,11 @@ describe('components & directives', () => {
|
|||
$r3$.ɵT(0);
|
||||
}
|
||||
if (rf & 2) {
|
||||
// clang-format wants to break this line by changing the second 'ɵ' to an invalid
|
||||
// unicode sequence.
|
||||
// clang-format off
|
||||
$r3$.ɵt(0, $r3$.ɵb(ctx.num));
|
||||
// clang-format on
|
||||
}
|
||||
},
|
||||
inputs: {num: 'num'}
|
||||
|
|
Loading…
Reference in New Issue