Hi Guys,

The current build failure on Jenkins seems to be caused (at least in part)
by:

org.apache.isis.runtimes.dflt.objectstores.nosql.file.server.FileServerTest.read

Error Message (Line 172)
target/test/org.domain.Class/2025.data (No such file or directory)

Looking at the log, the failure started after Dan moved the package...
"Revision 1078439 by danhaywood:
moving nosql objectstore packages in line with runtimes.dflt.objectstores"

But the test is almost identical to others that pass:
Fails:
170:public void read() throws Exception {
171:    File file1 = new File("target/test/org.domain.Class", "2025.data");
172:    FileWriter fileWriter = new FileWriter(file1);

Passes:
    public void writeUpdateFailsWhenVersionsDontMatch() throws Exception {
        File file2 = new File("target/test/org.domain.Class", "1026.data");
        FileWriter fileWriter = new FileWriter(file2);

Any ideas?

Regards,
Kevin


Reply via email to