Skip to content

Commit bb1ebad

Browse files
committed
Fix import order in JavaTest.java.tmpl
This was mistakenly forgotten in #1596.
1 parent df09d59 commit bb1ebad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/templates/JavaTest.java.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.google.firebase.test;
22

33
import android.app.Activity;
4-
import org.robolectric.RobolectricTestRunner;
54
import org.junit.Assert;
65
import org.junit.Test;
76
import org.junit.rules.TemporaryFolder;
87
import org.junit.runner.RunWith;
98
import org.robolectric.Robolectric;
9+
import org.robolectric.RobolectricTestRunner;
1010
import org.robolectric.annotation.Config;
1111

1212
/** A test wrapper that wraps around native C++ code that calls RUN_ALL_TESTS(). */

0 commit comments

Comments
 (0)