File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
proc/sysinfo/src/test/java/org/neo4j/gds Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments