Skip to content

Commit

Permalink
style: organise test imports to pass checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed May 17, 2018
1 parent 6712cc4 commit 48a807f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.bugsnag.android;

import static org.junit.Assert.assertEquals;

import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;

Expand All @@ -10,8 +12,6 @@
import java.io.IOException;
import java.io.OutputStreamWriter;

import static org.junit.Assert.assertEquals;

@RunWith(AndroidJUnit4.class)
@MediumTest
public class JsonWriterBugsnagTest {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.bugsnag.android;

import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import android.support.test.filters.MediumTest;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down

0 comments on commit 48a807f

Please sign in to comment.