Skip to content

Commit 2a7892c

Browse files
retronymadriaanm
authored andcommitted
SI-8253 Adjust test for namespace interpolation
This test fails after we try to fix SI-8523 in the compiler. But the test is actually at fault here, as it was relying on the loose matching performed by the compiler's SymbolXMLBuilder. The fix for SI-8253 that triggered the failure: scala/scala@8d175b907 The original commit that introduced this test: scala/scala@e1ffc05b10be6
1 parent 28bcf51 commit 2a7892c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/scala/xml/XMLTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ expected closing tag of foo
601601
</wsdl:definitions>;
602602

603603
def wsdlTemplate3(serviceName: String): Node =
604-
<wsdl:definitions name={ serviceName } xmlns:tns={ Text("target3") }>
604+
<wsdl:definitions name={ serviceName } xmlns:tns={ new _root_.scala.xml.Text("target3") }>
605605
</wsdl:definitions>;
606606

607607
def wsdlTemplate4(serviceName: String, targetNamespace: () => String): Node =

0 commit comments

Comments
 (0)