In the following MWE, why is there an extra vertical space in Example 2 ?
\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{showframe}
\usepackage{harmony}
\newtcolorbox{myFrame}
{colback = red, colframe = white, top = 0mm, bottom = 0mm, boxrule = 0pt, left = 2mm, right = 2mm}
\newcommand{\easy}{%
\llap{\parbox[t][0pt]{1.7cm}{%
\Acht{}test\
\small{}easy
}}%
}
\newcommand{\easyBis}{%
\llap{\parbox[t][0pt]{1.7cm}{%
test\
\small{}easy
}}%
}
\begin{document}
\begin{myFrame}
\easy
Example 1\par
This is the text of the exercise.\par
By the way, I use tcolorbox to make my boxes.
\end{myFrame}
\begin{myFrame}
\easyBis
Example 2\par
This is the text of the exercise.\par
By the way, I use tcolorbox to make my boxes.
\end{myFrame}
\end{document}


