Skip to content

Commit d2148bf

Browse files
committed
DbxClientTest: Fix month number in test folder name (was using "mm" instead of "MM").
1 parent a7d86da commit d2148bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/com/dropbox/core/DbxClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private void init()
5252
DbxRequestConfig requestConfig = new DbxRequestConfig("sdk-test", null);
5353
DbxClient client = new DbxClient(requestConfig, authInfo.accessToken, authInfo.host);
5454

55-
String timestamp = new SimpleDateFormat("yyyy-mm-dd HH.mm.ss").format(new Date());
55+
String timestamp = new SimpleDateFormat("yyyy-MM-dd HH.mm.ss").format(new Date());
5656
String basePath = "/Java SDK Tests/" + timestamp;
5757

5858
DbxEntry entry = client.createFolder(basePath);

0 commit comments

Comments
 (0)