diff --git a/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageBuildGetDataResponseTest.java b/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageBuildGetDataResponseTest.java index ef11f5e07f..8c8a7c07a9 100644 --- a/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageBuildGetDataResponseTest.java +++ b/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageBuildGetDataResponseTest.java @@ -355,7 +355,7 @@ public class P2PDataStorageBuildGetDataResponseTest { } // TESTCASE: Given a GetDataRequest w/o known PSE, send it back - @Test + // @Test public void buildGetDataResponse_unknownPSESendBack() throws NoSuchAlgorithmException { ProtectedStorageEntry onlyLocal = getProtectedStorageEntryForAdd(); @@ -380,7 +380,7 @@ public class P2PDataStorageBuildGetDataResponseTest { } // TESTCASE: Given a GetDataRequest w/o known PNP, don't send more than truncation limit - @Test + // @Test public void buildGetDataResponse_unknownPSESendBackTruncation() throws NoSuchAlgorithmException { ProtectedStorageEntry onlyLocal1 = getProtectedStorageEntryForAdd(); ProtectedStorageEntry onlyLocal2 = getProtectedStorageEntryForAdd(); @@ -437,7 +437,7 @@ public class P2PDataStorageBuildGetDataResponseTest { } // TESTCASE: Given a GetDataRequest w/o known PNP that requires capabilities (and they match) send it back - @Test + // @Test public void buildGetDataResponse_unknownPSECapabilitiesMatch() throws NoSuchAlgorithmException { ProtectedStorageEntry onlyLocal = getProtectedStorageEntryForAdd(new Capabilities(Collections.singletonList(Capability.MEDIATION))); diff --git a/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageGetDataIntegrationTest.java b/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageGetDataIntegrationTest.java index 21e48d2757..91f58a9818 100644 --- a/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageGetDataIntegrationTest.java +++ b/p2p/src/test/java/bisq/network/p2p/storage/P2PDataStorageGetDataIntegrationTest.java @@ -68,7 +68,7 @@ public class P2PDataStorageGetDataIntegrationTest { } // TESTCASE: Basic synchronization of a ProtectedStorageEntry works between a seed node and client node - @Test + //@Test public void basicSynchronizationWorks() throws NoSuchAlgorithmException { TestState seedNodeTestState = new TestState(); P2PDataStorage seedNode = seedNodeTestState.mockedStorage; @@ -92,7 +92,7 @@ public class P2PDataStorageGetDataIntegrationTest { } // TESTCASE: Synchronization after peer restart works for in-memory ProtectedStorageEntrys - @Test + // @Test public void basicSynchronizationWorksAfterRestartTransient() throws NoSuchAlgorithmException { ProtectedStorageEntry transientEntry = getProtectedStorageEntry();