Uncomment EmbeddedXmlSpec

This commit is contained in:
Adrien Piquerez 2024-03-05 10:09:22 +01:00
parent eadf1117f6
commit 5d0a0b7356
1 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,6 @@ package sbt.internal.parser
import sbt.internal.util.MessageOnlyException
/*
object EmbeddedXmlSpec extends CheckIfParsedSpec {
test("File with xml content should Handle last xml part") {
@ -36,7 +35,7 @@ object EmbeddedXmlSpec extends CheckIfParsedSpec {
|""".stripMargin
try {
split(buildSbt)
splitter(buildSbt)
sys.error("expected MessageOnlyException")
} catch {
case exception: MessageOnlyException =>
@ -163,8 +162,6 @@ object EmbeddedXmlSpec extends CheckIfParsedSpec {
|
|</aaa>
|
|
|
""".stripMargin,
"xml with blank line",
false,
@ -173,4 +170,3 @@ object EmbeddedXmlSpec extends CheckIfParsedSpec {
)
}
*/