From d98782f08e26aaeceffab59b1556a6f05078c744 Mon Sep 17 00:00:00 2001 From: Rodrigo Lazo Paz Date: Thu, 30 Oct 2025 11:24:22 -0400 Subject: [PATCH] [Firestore] Fix `FirestoreIndexValueWriterTest` The test was in the wrong package, `firestore`, for the directory it lives in, `index`. --- .../firestore/index/FirestoreIndexValueWriterTest.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/firebase-firestore/src/test/java/com/google/firebase/firestore/index/FirestoreIndexValueWriterTest.java b/firebase-firestore/src/test/java/com/google/firebase/firestore/index/FirestoreIndexValueWriterTest.java index 6acb576666a..cc98709da06 100644 --- a/firebase-firestore/src/test/java/com/google/firebase/firestore/index/FirestoreIndexValueWriterTest.java +++ b/firebase-firestore/src/test/java/com/google/firebase/firestore/index/FirestoreIndexValueWriterTest.java @@ -12,11 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package com.google.firebase.firestore; +package com.google.firebase.firestore.index; -import com.google.firebase.firestore.index.DirectionalIndexByteEncoder; -import com.google.firebase.firestore.index.FirestoreIndexValueWriter; -import com.google.firebase.firestore.index.IndexByteEncoder; +import com.google.firebase.firestore.FieldValue; +import com.google.firebase.firestore.UserDataReader; import com.google.firebase.firestore.model.DatabaseId; import com.google.firebase.firestore.model.FieldIndex; import com.google.firestore.v1.Value;