From bb1ebad52fc0f24701302a2c860982bc3fd9af41 Mon Sep 17 00:00:00 2001 From: Michael Hoisie Date: Tue, 28 May 2024 20:52:11 +0000 Subject: [PATCH] Fix import order in JavaTest.java.tmpl This was mistakenly forgotten in #1596. --- testing/templates/JavaTest.java.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/templates/JavaTest.java.tmpl b/testing/templates/JavaTest.java.tmpl index c0b53b6b4..ce8eba672 100644 --- a/testing/templates/JavaTest.java.tmpl +++ b/testing/templates/JavaTest.java.tmpl @@ -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(). */