is: `assertThat(xml.contains("<name>Sample Plugin</name>")).isTrue();` should be: `assertThat(xml).contains("<name>Sample Plugin</name>");` fix: <img width="873" alt="Image" src="https://github.com/user-attachments/assets/4e47a790-7c9e-43b4-8f5a-e61995f84d4f" /> <img width="1175" alt="Image" src="https://github.com/user-attachments/assets/f7f3fcc2-e3fb-47d5-8554-d1ae79b02e1d" />
is:
assertThat(xml.contains("<name>Sample Plugin</name>")).isTrue();should be:
assertThat(xml).contains("<name>Sample Plugin</name>");fix: