Le 04/06/2019 à 14:47, [email protected] a écrit :
> worked! The test runs fine, an the entries in the database are correct
> now. Thanks for your excellent help.
>
Good! Thanks for letting us know.
> There is one error remaining when running the ConsoleTestSuite:
>
> (…snip…)
> [ERROR] testVerbose(org.apache.sis.console.AboutCommandTest) Time elapsed:
> 0.64 s <<< FAILURE!
> java.lang.AssertionError: geoapi
> at
> org.apache.sis.console.AboutCommandTest.testVerbose(AboutCommandTest.java:94)
Are you running Maven from the command-line or from the IDE? Tests
should pass in both cases, but knowing the environment may help to
identify the problem.
> [ERROR] testCode(org.apache.sis.console.CRSCommandTest) Time elapsed: 0.171
> s <<< FAILURE!
Can you try the following replacement? in CRSCommandTest, method
testCode(), replace the following line:
final String wkt = test.outputBuffer.toString();
by
String wkt = test.outputBuffer.toString();
wkt = wkt.replace(System.lineSeparator(), "\n");
Does it help?
Martin