File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/test/java/com/github/underscore Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,32 +12,32 @@ class XmlBuilderTest {
1212 private static final String XML =
1313 "<?xml version=\" 1.0\" encoding=\" UTF-8\" ?>\n "
1414 + "<Projects>\n "
15- + " <java-xmlbuilder language=\" Java\" scm=\" SVN\" >\n "
16- + " <Location type=\" URL\" >http ://code.google. com/p/java-xmlbuilder /</Location>\n "
17- + " </java-xmlbuilder >\n "
15+ + " <underscore-java language=\" Java\" scm=\" SVN\" >\n "
16+ + " <Location type=\" URL\" >https ://github. com/javadev/underscore-java /</Location>\n "
17+ + " </underscore-java >\n "
1818 + " <JetS3t language=\" Java\" scm=\" CVS\" >\n "
19- + " <Location type=\" URL\" >http ://jets3t.s3.amazonaws.com/index.html</Location>\n "
19+ + " <Location type=\" URL\" >https ://jets3t.s3.amazonaws.com/index.html</Location>\n "
2020 + " </JetS3t>\n "
2121 + "</Projects>" ;
2222
2323 @ Test
2424 void createXml () {
2525 XmlBuilder xmlBuilder =
2626 XmlBuilder .create ("Projects" )
27- .e ("java-xmlbuilder " )
27+ .e ("underscore-java " )
2828 .a ("language" , "Java" )
2929 .a ("scm" , "SVN" )
3030 .e ("Location" )
3131 .a ("type" , "URL" )
32- .t ("http ://code.google. com/p/java-xmlbuilder /" )
32+ .t ("https ://github. com/javadev/underscore-java /" )
3333 .up ()
3434 .up ()
3535 .e ("JetS3t" )
3636 .a ("language" , "Java" )
3737 .a ("scm" , "CVS" )
3838 .e ("Location" )
3939 .a ("type" , "URL" )
40- .t ("http ://jets3t.s3.amazonaws.com/index.html" );
40+ .t ("https ://jets3t.s3.amazonaws.com/index.html" );
4141 assertEquals (XML , xmlBuilder .asString ());
4242 }
4343
You can’t perform that action at this time.
0 commit comments