master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 6 additions and 0 deletions
Showing only changes of commit 87a6e2b967 - Show all commits

View File

@ -137,5 +137,11 @@ public class SplitPerFunderTest {
.map(item -> OBJECT_MAPPER.readValue(item, CommunityResult.class));
Assertions.assertEquals(3, tmp.count());
// MZOS 1
tmp = sc
.textFile(workingDir.toString() + "/split/MZOS")
.map(item -> OBJECT_MAPPER.readValue(item, CommunityResult.class));
Assertions.assertEquals(1, tmp.count());
}
}