@@ -100,8 +100,8 @@ public void canRunCountUsingAggregationMethod() throws Exception {
100100 @ Test
101101 public void allowsAliasesForLongestFieldNames () throws Exception {
102102 assumeFalse (
103- "Skip this test when running against the Firestore emulator or enterprise backend because they do not support "
104- + " long field names." ,
103+ "Skip this test when running against the Firestore emulator or enterprise backend because"
104+ + " they do not support long field names." ,
105105 isRunningAgainstFirestoreEmulator (firestore )
106106 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
107107
@@ -139,8 +139,8 @@ public void canGetDuplicateAggregations() throws Exception {
139139 @ Test
140140 public void aggregateErrorMessageIfIndexIsMissing () throws Exception {
141141 assumeFalse (
142- "Skip this test when running against emulator or Enterprise because they do not require composite "
143- + " index creation." ,
142+ "Skip this test when running against emulator or Enterprise because they do not require"
143+ + " composite index creation." ,
144144 isRunningAgainstFirestoreEmulator (firestore )
145145 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
146146
@@ -250,7 +250,8 @@ public void getCorrectTypeForAverageNull() throws Exception {
250250 @ Test
251251 public void canPerformMaxAggregations () throws Exception {
252252 assumeTrue (
253- "Skip this test when running against standard prod because it requires composite index creation." ,
253+ "Skip this test when running against standard prod because it requires composite index"
254+ + " creation." ,
254255 isRunningAgainstFirestoreEmulator (firestore )
255256 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
256257 CollectionReference collection = testCollectionWithDocs (testDocs1 );
@@ -379,7 +380,8 @@ public void performsAggregationsOnDocumentsWithAllAggregatedFields() throws Exce
379380 @ Test
380381 public void performsAggregationsWhenNaNExistsForSomeFieldValues () throws Exception {
381382 assumeTrue (
382- "Skip this test when running against standard prod because it requires composite index creation." ,
383+ "Skip this test when running against standard prod because it requires composite index"
384+ + " creation." ,
383385 isRunningAgainstFirestoreEmulator (firestore )
384386 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
385387 Map <String , Map <String , Object >> testDocs =
@@ -943,7 +945,8 @@ public void performsAverageOnlyOnNumericFields() throws Exception {
943945 @ Test
944946 public void aggregatesWithDocumentReferenceCursors () throws Exception {
945947 assumeTrue (
946- "Skip this test when running against standard prod because it requires composite index creation." ,
948+ "Skip this test when running against standard prod because it requires composite index"
949+ + " creation." ,
947950 isRunningAgainstFirestoreEmulator (firestore )
948951 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
949952 Map <String , Map <String , Object >> testDocs =
@@ -1056,7 +1059,8 @@ public void aggregateNoFilterExplicitOrderByFieldValueCursor() throws Exception
10561059 @ Test
10571060 public void aggregateNoFilterExplicitOrderByDocumentReferenceCursor () throws Exception {
10581061 assumeTrue (
1059- "Skip this test when running against standard prod because it requires composite index creation." ,
1062+ "Skip this test when running against standard prod because it requires composite index"
1063+ + " creation." ,
10601064 isRunningAgainstFirestoreEmulator (firestore )
10611065 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
10621066 CollectionReference collection = addTwoDocsForCursorTesting ();
@@ -1072,7 +1076,8 @@ public void aggregateNoFilterExplicitOrderByDocumentReferenceCursor() throws Exc
10721076 @ Test
10731077 public void aggregateNoFilterNoOrderByDocumentReferenceCursor () throws Exception {
10741078 assumeTrue (
1075- "Skip this test when running against standard prod because it requires composite index creation." ,
1079+ "Skip this test when running against standard prod because it requires composite index"
1080+ + " creation." ,
10761081 isRunningAgainstFirestoreEmulator (firestore )
10771082 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
10781083 CollectionReference collection = addTwoDocsForCursorTesting ();
@@ -1084,7 +1089,8 @@ public void aggregateNoFilterNoOrderByDocumentReferenceCursor() throws Exception
10841089 @ Test
10851090 public void aggregateNoFilterExplicitOrderByDocumentSnapshotCursor () throws Exception {
10861091 assumeTrue (
1087- "Skip this test when running against standard prod because it requires composite index creation." ,
1092+ "Skip this test when running against standard prod because it requires composite index"
1093+ + " creation." ,
10881094 isRunningAgainstFirestoreEmulator (firestore )
10891095 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
10901096 CollectionReference collection = addTwoDocsForCursorTesting ();
@@ -1125,7 +1131,8 @@ public void aggregateInequalityFilterExplicitOrderByFieldValueCursor() throws Ex
11251131 @ Test
11261132 public void aggregateEqualityFilterExplicitOrderByDocumentReferenceCursor () throws Exception {
11271133 assumeTrue (
1128- "Skip this test when running against standard prod because it requires composite index creation." ,
1134+ "Skip this test when running against standard prod because it requires composite index"
1135+ + " creation." ,
11291136 isRunningAgainstFirestoreEmulator (firestore )
11301137 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
11311138 CollectionReference collection = addTwoDocsForCursorTesting ();
@@ -1157,7 +1164,8 @@ public void aggregateInequalityFilterExplicitOrderByDocumentReferenceCursor() th
11571164 @ Test
11581165 public void aggregateEqualityFilterNoOrderByDocumentSnapshotReference () throws Exception {
11591166 assumeTrue (
1160- "Skip this test when running against standard prod because it requires composite index creation." ,
1167+ "Skip this test when running against standard prod because it requires composite index"
1168+ + " creation." ,
11611169 isRunningAgainstFirestoreEmulator (firestore )
11621170 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
11631171 CollectionReference collection = addTwoDocsForCursorTesting ();
@@ -1182,7 +1190,8 @@ public void aggregateInequalityFilterNoOrderByDocumentSnapshotReference() throws
11821190 @ Test
11831191 public void aggregateInequalityFilterNoOrderByDocumentSnapshotReference2 () throws Exception {
11841192 assumeTrue (
1185- "Skip this test when running against standard prod because it requires composite index creation." ,
1193+ "Skip this test when running against standard prod because it requires composite index"
1194+ + " creation." ,
11861195 isRunningAgainstFirestoreEmulator (firestore )
11871196 || getFirestoreEdition () == FirestoreEdition .ENTERPRISE );
11881197 CollectionReference collection = addTwoDocsForCursorTesting ();
0 commit comments