Skip to content

Commit 62ff2d6

Browse files
committed
Update SysInfoProcTest
1 parent 2801823 commit 62ff2d6

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ class SysInfoProcTest extends BaseProcTest {
6060
"Neo4j 5.2.0",
6161
"Neo4j 5.2.0 (placeholder)",
6262
"Neo4j Settings 5.2.0",
63-
"Neo4j Settings 5.2.0 (placeholder)"
63+
"Neo4j Settings 5.2.0 (placeholder)",
64+
65+
"Neo4j 5.3",
66+
"Neo4j 5.3 (placeholder)",
67+
"Neo4j Settings 5.3",
68+
"Neo4j Settings 5.3 (placeholder)"
6469
);
6570

6671
@BeforeEach
@@ -131,6 +136,14 @@ void testSysInfoProc() throws IOException {
131136
"Neo4j 5.2.0"
132137
);
133138
break;
139+
case V_5_3:
140+
expectedCompatibilities = Set.of(
141+
"Neo4j Settings 5.3 (placeholder)",
142+
"Neo4j Settings 5.3",
143+
"Neo4j 5.3 (placeholder)",
144+
"Neo4j 5.3"
145+
);
146+
break;
134147
default:
135148
throw new IllegalStateException("Unexpected Neo4j version: " + neo4jVersion);
136149
}

0 commit comments

Comments
 (0)