Skip to content

Commit

Permalink
it's aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
zimmre committed Nov 1, 2022
1 parent 81f4a21 commit 07be94b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/test/java/com/neo4j/docker/neo4jserver/TestUpgrade.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,7 @@ private static void assumeUpgradeSupported( Neo4jVersion upgradeFrom )

private static boolean isArm()
{
String property = System.getProperty( "os.arch" );
if (!property.equals( "amd64" )) {
throw new RuntimeException("BOOM! os.arch returned " + property);
}
return property.equals( "arm" );
return System.getProperty( "os.arch" ).equals( "aarch64" );
}

private void testUpgradeNamedVolumes( Neo4jVersion upgradeFrom )
Expand Down

0 comments on commit 07be94b

Please sign in to comment.