Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03702d9d authored by Andy Scherzinger's avatar Andy Scherzinger
Browse files

fixed names

parent 0a98a7b8
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
/* ownCloud Android Library is available under MIT license
/* Nextcloud Android Library is available under MIT license
 *
 *   Copyright (C) 2016 Nextcloud
 *   Copyright (C) 2015 ownCloud Inc.
 *   Copyright (C) 2015 Bartosz Przybylski
 *   Copyright (C) 2014 Marcello Steiner
@@ -136,6 +137,4 @@ public class RemoteGetUserQuotaOperation extends RemoteOperation {
    private boolean isSuccess(int status) {
        return (status == HttpStatus.SC_OK);
    }


}
+2 −5
Original line number Diff line number Diff line
/* ownCloud Android Library is available under MIT license
/* Nextcloud Android Library is available under MIT license
 *
 *   Copyright (C) 2016 Nextcloud
 *   Copyright (C) 2015 ownCloud Inc.
 *   Copyright (C) 2015 Bartosz Przybylski
 *
@@ -40,11 +41,9 @@ import com.owncloud.android.lib.resources.files.*;
 * Class to test Get User Quota
 *
 * @author Bartosz Przybylski
 *
 */
public class GetUserQuotaTest extends RemoteTest {


    private static final String LOG_TAG = GetUserQuotaTest.class.getCanonicalName();

    /* Files to download. These files must exist on the account */
@@ -58,7 +57,6 @@ public class GetUserQuotaTest extends RemoteTest {
    private String mDownloadedFilePath;
    private TestActivity mActivity;


    @Override
    protected void setUp() throws Exception {
        super.setUp();
@@ -77,5 +75,4 @@ public class GetUserQuotaTest extends RemoteTest {
        assertTrue(quota.getUsed() >= 0);
        assertTrue(quota.getTotal() > 0);
    }

}