diff --git a/framework/src/test/java/org/tron/common/runtime/RuntimeImplMockTest.java b/framework/src/test/java/org/tron/common/runtime/RuntimeImplMockTest.java
index ee126049ad0..e694f1c194f 100644
--- a/framework/src/test/java/org/tron/common/runtime/RuntimeImplMockTest.java
+++ b/framework/src/test/java/org/tron/common/runtime/RuntimeImplMockTest.java
@@ -4,7 +4,6 @@
 
 import lombok.extern.slf4j.Slf4j;
 import org.junit.After;
-import org.junit.Assert;
 import org.junit.Test;
 import org.tron.core.vm.program.Program;
 
@@ -49,8 +48,6 @@ public void testSetResultCode1() throws Exception {
         = new Program.JVMStackOverFlowException();
     programResult.setException(jvmStackOverFlowException);
     privateMethod.invoke(runtime, programResult);
-
-    Assert.assertTrue(true);
   }
 
 }
\ No newline at end of file
diff --git a/framework/src/test/java/org/tron/core/WalletMockTest.java b/framework/src/test/java/org/tron/core/WalletMockTest.java
index a52da0a95c9..098ba9aee61 100644
--- a/framework/src/test/java/org/tron/core/WalletMockTest.java
+++ b/framework/src/test/java/org/tron/core/WalletMockTest.java
@@ -105,8 +105,6 @@ public void testSetTransactionNullException() throws Exception {
         "setTransaction", TransactionCapsule.class);
     privateMethod.setAccessible(true);
     privateMethod.invoke(wallet, transactionCapsuleMock);
-
-    assertTrue(true);
   }
 
   @Test
@@ -130,7 +128,6 @@ public void testCreateTransactionCapsuleWithoutValidateWithTimeoutNullException(
             long.class);
       privateMethod.setAccessible(true);
       privateMethod.invoke(wallet, message, contractType, timeout);
-      assertTrue(true);
     }
   }
 
@@ -164,8 +161,6 @@ public void testCreateTransactionCapsuleWithoutValidateWithTimeout()
           long.class);
       privateMethod.setAccessible(true);
       privateMethod.invoke(wallet, message, contractType, timeout);
-
-      assertTrue(true);
     }
   }
 
@@ -1108,7 +1103,6 @@ public void testGetShieldedTRC20LogType1() {
     } catch (Exception e) {
       assertTrue(false);
     }
-    assertTrue(true);
   }
 
 
@@ -1141,7 +1135,6 @@ public void testGetShieldedTRC20LogType2() {
     } catch (Exception e) {
       assertTrue(false);
     }
-    assertTrue(true);
   }
 
   @Test
@@ -1222,7 +1215,6 @@ public void testBuildShieldedTRC20InputWithAK1() throws Exception {
           builder,
           spendNote,
           ak, nk);
-      assertTrue(true);
     }
 
   }
diff --git a/framework/src/test/java/org/tron/core/db/ManagerMockTest.java b/framework/src/test/java/org/tron/core/db/ManagerMockTest.java
index f0e850faf7f..65726857809 100644
--- a/framework/src/test/java/org/tron/core/db/ManagerMockTest.java
+++ b/framework/src/test/java/org/tron/core/db/ManagerMockTest.java
@@ -34,7 +34,6 @@
 import org.quartz.CronExpression;
 import org.tron.common.parameter.CommonParameter;
 import org.tron.common.runtime.ProgramResult;
-import org.tron.common.runtime.RuntimeImpl;
 import org.tron.common.utils.Sha256Hash;
 import org.tron.core.ChainBaseManager;
 import org.tron.core.capsule.BlockCapsule;
@@ -327,8 +326,6 @@ public void testProcessTransaction() throws Exception {
         TransactionCapsule.class, BlockCapsule.class);
     privateMethod.setAccessible(true);
     privateMethod.invoke(dbManager, transactionCapsuleMock, blockCapsuleMock);
-
-    assertTrue(true);
   }
 
   @Test
@@ -369,7 +366,6 @@ public void testRePush() {
     when(transactionStoreMock.has(any())).thenReturn(true);
 
     dbManager.rePush(trx);
-    assertTrue(true);
   }
 
   @SneakyThrows
@@ -409,7 +405,6 @@ public void testRePush1() {
 
     doThrow(new TooBigTransactionResultException()).when(dbManager).pushTransaction(any());
     dbManager.rePush(trx);
-    assertTrue(true);
   }
 
   @Test
@@ -420,7 +415,6 @@ public void testPostSolidityFilter() throws Exception {
         "postSolidityFilter", long.class, long.class);
     privateMethod.setAccessible(true);
     privateMethod.invoke(dbManager, 100L, 10L);
-    assertTrue(true);
   }
 
   @Test
@@ -442,7 +436,6 @@ public void testReOrgLogsFilter() throws Exception {
     Method privateMethod = Manager.class.getDeclaredMethod("reOrgLogsFilter");
     privateMethod.setAccessible(true);
     privateMethod.invoke(dbManager);
-    assertTrue(true);
   }
 
 }
\ No newline at end of file
diff --git a/framework/src/test/java/org/tron/core/net/peer/PeerStatusCheckMockTest.java b/framework/src/test/java/org/tron/core/net/peer/PeerStatusCheckMockTest.java
index 5e8c69fdd6a..80b1abdc35d 100644
--- a/framework/src/test/java/org/tron/core/net/peer/PeerStatusCheckMockTest.java
+++ b/framework/src/test/java/org/tron/core/net/peer/PeerStatusCheckMockTest.java
@@ -1,6 +1,5 @@
 package org.tron.core.net.peer;
 
-import static org.junit.Assert.assertTrue;
 import static org.mockito.Mockito.doThrow;
 import static org.mockito.Mockito.spy;
 
@@ -22,7 +21,6 @@ public void testInitException() throws InterruptedException {
 
     // the initialDelay of scheduleWithFixedDelay is 5s
     Thread.sleep(5000L);
-    assertTrue(true);
   }
 
 }
\ No newline at end of file