Skip to content

Commit 778596b

Browse files
code style issue fix
1 parent 64c6a54 commit 778596b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/io/appium/java_client/ios/IOSScrollingSearchingTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package io.appium.java_client.ios;
1718

19+
import static org.junit.Assert.assertEquals;
1820

1921
import io.appium.java_client.MobileBy;
2022
import io.appium.java_client.MobileElement;
@@ -28,8 +30,6 @@
2830

2931
import java.io.File;
3032

31-
import static org.junit.Assert.assertEquals;
32-
3333
public class IOSScrollingSearchingTest {
3434

3535
private static AppiumDriverLocalService service;
@@ -80,7 +80,7 @@ public static void afterClass() {
8080
@Test public void scrollByElement() {
8181
MobileElement table = driver.findElement(MobileBy
8282
.IosUIAutomation(".tableViews()[0]"));
83-
MobileElement slider =table.findElement(MobileBy
83+
MobileElement slider = table.findElement(MobileBy
8484
.IosUIAutomation(".scrollToElementWithPredicate(\"name CONTAINS 'Slider'\")"));
8585
assertEquals(slider.getAttribute("name"), "Sliders");
8686
}

0 commit comments

Comments
 (0)