Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public class Main {
private static final Random RAND = new Random(0L);

private static void testBasicSerialization(DbxClientV2 client) throws DbxException, IOException {
private static void testBasicSerialization(DbxClientV2 client) throws DbxException {
// Make the /account/info API call.
FullAccount expected = client.users().getCurrentAccount();
assertNotNull(expected);
Expand All @@ -53,7 +53,7 @@ private static void testBasicSerialization(DbxClientV2 client) throws DbxExcepti
}

private static void testEnumeratedSubtypeSerialization(DbxClientV2 client) throws DbxException, IOException {
String rootPath = "/test/proguard-tests";
String rootPath = "/javatest/proguard-tests";

try {
FolderMetadata root = client.files().createFolderV2(rootPath).getMetadata();
Expand Down Expand Up @@ -139,7 +139,7 @@ private static void testErrorSerialization(DbxClientV2 client) throws IOExceptio
fail("No exception thrown");
}

public static void main(String[] args) throws IOException {
public static void main(String[] args) {
// Only display important log messages.
Logger.getLogger("").setLevel(Level.WARNING);

Expand Down
Loading