nizhikov commented on code in PR #12112: URL: https://github.com/apache/ignite/pull/12112#discussion_r2114602220
########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/SnapshotCompatibilityTest.java: ########## @@ -65,6 +66,17 @@ public class SnapshotCompatibilityTest extends IgnitePersistenceCompatibilityAbs /** */ private static final String SNAPSHOT_NAME = "test_snapshot"; + /** */ + private static final String CUSTOM_SNP_PATH; + + static { + try { + CUSTOM_SNP_PATH = U.resolveWorkDirectory(U.defaultWorkDirectory(), "ex_snapshots", true).getAbsolutePath(); Review Comment: Let's make `CUSTOM_SNP_PATH` non static and init it into `beforeTest` method. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org