Skip to content

Commit 5501856

Browse files
committed
qvs format code
1 parent 5130139 commit 5501856

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/test/java/test/com/qiniu/qvs/NameSpaceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class NameSpaceTest {
1717
private Response res = null;
1818
private Response res2 = null;
1919
private final String namespaceId = "3nm4x1e0xw855";
20-
private final String name = ""+System.currentTimeMillis();
20+
private final String name = "" + System.currentTimeMillis();
2121

2222
@BeforeEach
2323
public void setUp() throws Exception {

src/test/java/test/com/qiniu/qvs/PTZTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class PTZTest {
1717
private final String namespaceId = "3nm4x1e0xw855";
1818
private final String gbId = "31011500991320007536";
1919
private final String chId = "";
20-
private String name = ""+System.currentTimeMillis();
20+
private String name = "" + System.currentTimeMillis();
2121

2222
@BeforeEach
2323
public void setUp() throws Exception {
@@ -75,7 +75,7 @@ public void testIrisControl() {
7575
@Test
7676
@Tag("IntegrationTest")
7777
public void testPresetsControl() {
78-
name = ""+System.currentTimeMillis();
78+
name = "" + System.currentTimeMillis();
7979
try {
8080
res = ptzManager.presetsControl(namespaceId, gbId, "set", name, 0, chId);
8181
assertNotNull(res);

src/test/java/test/com/qiniu/qvs/StreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
public class StreamTest {
1818

1919
Auth auth = TestConfig.testAuth;
20-
private final String streamid = ""+System.currentTimeMillis();
20+
private final String streamid = "" + System.currentTimeMillis();
2121
Stream stream = new Stream("31011500991320007536");
2222
Stream createstream = new Stream(streamid);
2323
private StreamManager streamManager;

src/test/java/test/com/qiniu/qvs/TemplateTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TemplateTest {
1717
private TemplateManager templateManager;
1818
private Response res = null;
1919
private final String templateId = "2xenzwlwgi7mf";
20-
private String templateName = ""+System.currentTimeMillis();
20+
private String templateName = "" + System.currentTimeMillis();
2121

2222
@BeforeEach
2323
public void setUp() throws Exception {
@@ -63,7 +63,7 @@ public void testQueryTemplate() {
6363
@Test
6464
@Tag("IntegrationTest")
6565
public void testUpdateTemplate() {
66-
templateName = ""+System.currentTimeMillis();
66+
templateName = "" + System.currentTimeMillis();
6767
PatchOperation[] patchOperation = { new PatchOperation("replace", "name", templateName) };
6868
try {
6969
res = templateManager.updateTemplate(templateId, patchOperation);

0 commit comments

Comments
 (0)