Commit 167f70dd authored by wangjinjing's avatar wangjinjing

bug

parent 549330dd
This diff is collapsed.
......@@ -25,7 +25,7 @@ public class TestHttpUtil {
Assertions.assertNotNull(path, "path不能为空");
Assertions.assertNotNull(source, "请求参数不能为空");
timestampStr = String.valueOf(System.currentTimeMillis() / 1000);
nonce = String.valueOf(System.currentTimeMillis() / 1000);
nonce = String.valueOf(System.currentTimeMillis());
appSecret = DigestUtil.md5Hex(appSecret);
String json = null;
try {
......@@ -60,7 +60,7 @@ public class TestHttpUtil {
Assertions.assertNotNull(path, "path不能为空");
Assertions.assertNotNull(source, "请求参数不能为空");
timestampStr = String.valueOf(System.currentTimeMillis() / 1000);
nonce = String.valueOf(System.currentTimeMillis() / 1000);
nonce = String.valueOf(System.currentTimeMillis());
appSecret = DigestUtil.md5Hex(appSecret);
String json = null;
try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment