Skip to content

Commit

Permalink
Fix import order in JavaTest.java.tmpl
Browse files Browse the repository at this point in the history
This was mistakenly forgotten in #1596.
  • Loading branch information
hoisie committed May 28, 2024
1 parent df09d59 commit bb1ebad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/templates/JavaTest.java.tmpl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.google.firebase.test;

import android.app.Activity;
import org.robolectric.RobolectricTestRunner;
import org.junit.Assert;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

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

0 comments on commit bb1ebad

Please sign in to comment.