Skip to content

Commit 3af5f20

Browse files
FlorentinDjjaderberg
authored andcommitted
Fix expected ALL_COMPATIBILITIES
1 parent 3078d22 commit 3af5f20

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

cypher/cypher-test/src/test/java/org/neo4j/gds/storageengine/InMemoryNodeCursorTest.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,6 @@ void testLabels() {
100100
});
101101
}
102102

103-
@Test
104-
void shouldHaveProperties43() {
105-
nodeCursor.next();
106-
assertThat(nodeCursor.hasProperties()).isTrue();
107-
assertThat(nodeCursor.propertiesReference()).isEqualTo(0L);
108-
}
109-
110103
@Test
111104
void shouldHaveProperties() {
112105
nodeCursor.next();

proc/sysinfo/src/test/java/org/neo4j/gds/SysInfoProcTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@
4848
class SysInfoProcTest extends BaseProcTest {
4949

5050
private static final Collection<String> ALL_COMPATIBILITIES = List.of(
51-
"Neo4j 4.3",
5251
"Neo4j 4.4",
53-
"Neo4j Settings 4.x",
52+
"Neo4j Settings 4.4",
5453

5554
"Neo4j 5.1",
5655
"Neo4j 5.1 (placeholder)",
@@ -120,7 +119,7 @@ void testSysInfoProc() throws IOException {
120119
Set<String> expectedCompatibilities;
121120
switch (neo4jVersion) {
122121
case V_4_4:
123-
expectedCompatibilities = Set.of("Neo4j 4.4", "Neo4j Settings 4.x");
122+
expectedCompatibilities = Set.of("Neo4j 4.4", "Neo4j Settings 4.4");
124123
break;
125124
case V_5_1:
126125
expectedCompatibilities = Set.of(

0 commit comments

Comments
 (0)