diff --git a/app/src/androidTest/java/fr/free/nrw/commons/NearbyActivityTest.java b/app/src/androidTest/java/fr/free/nrw/commons/NearbyActivityTest.java index 9585b57d1..2ac5284e9 100644 --- a/app/src/androidTest/java/fr/free/nrw/commons/NearbyActivityTest.java +++ b/app/src/androidTest/java/fr/free/nrw/commons/NearbyActivityTest.java @@ -1,20 +1,20 @@ package fr.free.nrw.commons; +import static android.support.test.espresso.Espresso.onView; +import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; +import static android.support.test.espresso.matcher.ViewMatchers.withText; + import android.support.test.espresso.assertion.ViewAssertions; import android.support.test.filters.LargeTest; import android.support.test.rule.ActivityTestRule; import android.support.test.runner.AndroidJUnit4; +import fr.free.nrw.commons.nearby.NearbyActivity; + import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; -import fr.free.nrw.commons.nearby.NearbyActivity; - -import static android.support.test.espresso.Espresso.onView; -import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; -import static android.support.test.espresso.matcher.ViewMatchers.withText; - @LargeTest @RunWith(AndroidJUnit4.class) public class NearbyActivityTest {