Master branch updates from beta September 2023 #337

Manually merged
claudio.atzori merged 1271 commits from beta into master 2023-09-06 11:31:09 +02:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit af61e44acc - Show all commits

View File

@ -75,7 +75,7 @@ public class GraphCleaningFunctionsTest {
} }
@Test @Test
void testFilter_false() throws Exception { void testFilter_invisible_true() throws Exception {
assertNotNull(vocabularies); assertNotNull(vocabularies);
assertNotNull(mapping); assertNotNull(mapping);
@ -87,11 +87,11 @@ public class GraphCleaningFunctionsTest {
assertTrue(p_in instanceof Result); assertTrue(p_in instanceof Result);
assertTrue(p_in instanceof Publication); assertTrue(p_in instanceof Publication);
assertEquals(false, GraphCleaningFunctions.filter(p_in)); assertEquals(true, GraphCleaningFunctions.filter(p_in));
} }
@Test @Test
void testFilter_true() throws Exception { void testFilter_true_nothing_to_filter() throws Exception {
assertNotNull(vocabularies); assertNotNull(vocabularies);
assertNotNull(mapping); assertNotNull(mapping);