Skip to content

Commit 0a554e6

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into develop
2 parents 00003b4 + c85c2f4 commit 0a554e6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ task lint(type: Checkstyle) {
153153
source 'src'
154154
include '**/*.java'
155155
exclude 'main/gen/**'
156+
exclude 'test/**'
156157
// empty classpath
157158
classpath = files()
158159
//Failing the build
@@ -271,4 +272,4 @@ def binaryRelease(taskName, jarName, mainClass) {
271272
artifacts {
272273
archives(binaryRelease('buildSolidityNodeJar', 'SolidityNode', 'org.tron.program.SolidityNode'),
273274
binaryRelease('buildFullNodeJar', 'FullNode', 'org.tron.program.FullNode'))
274-
}
275+
}

src/test/java/stest/tron/wallet/account/WalletTestAccount003.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void testUpdateAccount() {
135135
} catch (InterruptedException e) {
136136
e.printStackTrace();
137137
}*/
138-
Assert.assertTrue(updateAccount(lowBalAddress, "testName".getBytes(), lowBalTest));
138+
Assert.assertTrue(updateAccount(lowBalAddress, Long.toString(now).getBytes(), lowBalTest));
139139
tryToUpdateAccount = queryAccount(lowBalTest, blockingStubFull);
140140
Assert.assertFalse(tryToUpdateAccount.getAccountName().isEmpty());
141141
Assert.assertFalse(updateAccount(lowBalAddress, "secondUpdateName".getBytes(), lowBalTest));

0 commit comments

Comments
 (0)