Skip to content

Commit a6f19cb

Browse files
CopilotAndriySvyryd
andcommitted
Update cosmos linux emulator image to vnext-latest and unskip passing tests
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
1 parent 870a449 commit a6f19cb

22 files changed

Lines changed: 78 additions & 155 deletions

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
--health-timeout=5s
4141
4242
cosmosdb:
43-
image: mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-preview
43+
image: mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-latest
4444
ports:
4545
- 8081:8081
4646
env:

test/EFCore.Cosmos.FunctionalTests/CosmosSessionTokensTest.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,6 @@ protected Test2Context()
578578
}
579579
}
580580

581-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/291 (Session tokens not properly tracked)
582581
public class CosmosNonSharedSessionTokenTests(NonSharedFixture fixture) : NonSharedModelTestBase(fixture), IClassFixture<NonSharedFixture>
583582
{
584583
protected override ITestStoreFactory NonSharedTestStoreFactory
@@ -588,8 +587,7 @@ protected override ITestStoreFactory NonSharedTestStoreFactory
588587

589588
protected override TestStore CreateTestStore() => CosmosTestStore.Create(NonSharedStoreName, (cfg) => cfg.SessionTokenManagementMode(Cosmos.Infrastructure.SessionTokenManagementMode.SemiAutomatic));
590589

591-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/322
592-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
590+
[Fact]
593591
public virtual async Task UseSessionTokens_uses_session_tokens()
594592
{
595593
var contextFactory = await InitializeNonSharedTest<CosmosSessionTokenContext>();
@@ -633,8 +631,7 @@ public virtual async Task ReadItem_does_not_exist_returns_null()
633631
Assert.Null(result);
634632
}
635633

636-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/322
637-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
634+
[Fact]
638635
public virtual async Task Read_item_session_not_found_throws_CosmosException()
639636
{
640637
var contextFactory = await InitializeNonSharedTest<CosmosSessionTokenContext>();
@@ -721,7 +718,7 @@ public virtual async Task Pooled_context_clears_SessionTokenStorage()
721718
Assert.True(_sessionTokenStorage.ClearCalled);
722719
}
723720

724-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/319
721+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/331
725722
[ConditionalTheory(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
726723
[InlineData(AutoTransactionBehavior.Never)]
727724
[InlineData(AutoTransactionBehavior.Always)]

test/EFCore.Cosmos.FunctionalTests/CosmosTransactionalBatchTest.cs

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ public class CosmosTransactionalBatchTest(CosmosTransactionalBatchTest.CosmosFix
1414

1515
protected CosmosFixture Fixture { get; } = fixture;
1616

17-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/292 (Transactional batch limits not enforced)
18-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
17+
[Fact]
1918
public virtual async Task SaveChanges_fails_for_duplicate_key_in_same_partition_prevents_other_inserts_in_same_partition_even_if_staged_before_add()
2019
{
2120
using (var arrangeContext = Fixture.CreateContext())
@@ -107,8 +106,7 @@ public virtual async Task SaveChanges_transaction_behavior_never_fails_for_dupli
107106
Assert.Equal(4, customersCount);
108107
}
109108

110-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/292 (Transactional batch limits not enforced)
111-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
109+
[Fact]
112110
public virtual async Task SaveChanges_transaction_behavior_always_fails_for_multiple_partitionkeys()
113111
{
114112
using var context = Fixture.CreateContext();
@@ -171,8 +169,7 @@ public virtual async Task SaveChanges_transaction_behavior_always_succeeds_for_1
171169
Assert.Equal(100, customersCount);
172170
}
173171

174-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/292 (Transactional batch limits not enforced)
175-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
172+
[Fact]
176173
public virtual async Task SaveChanges_transaction_behavior_always_fails_for_multiple_entities_with_triggers()
177174
{
178175
using var context = Fixture.CreateContext();
@@ -189,7 +186,7 @@ public virtual async Task SaveChanges_transaction_behavior_always_fails_for_mult
189186
Assert.Equal(0, customersCount);
190187
}
191188

192-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/294
189+
// Triggers are not supported in the Linux emulator
193190
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
194191
public virtual async Task SaveChanges_transaction_behavior_always_succeeds_for_single_entity_with_trigger()
195192
{
@@ -233,8 +230,7 @@ public virtual async Task SaveChanges_transaction_behavior_always_succeeds_for_s
233230
Assert.Equal(1, customersCount);
234231
}
235232

236-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/292 (Transactional batch limits not enforced)
237-
[ConditionalFact(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
233+
[Fact]
238234
public virtual async Task SaveChanges_transaction_behavior_always_fails_for_single_entity_with_trigger_and_entity_without_trigger()
239235
{
240236
using var context = Fixture.CreateContext();
@@ -284,7 +280,6 @@ public virtual async Task SaveChanges_entity_too_large_throws()
284280
Assert.Equal(0, customersCount);
285281
}
286282

287-
288283
[Fact]
289284
public virtual async Task SaveChanges_too_large_entry_after_smaller_throws_after_saving_smaller()
290285
{
@@ -366,7 +361,7 @@ public virtual async Task SaveChanges_exactly_2_mib_does_not_split_and_one_byte_
366361
private const int MaxSpecialCharsInId = MaxKeySize / 3;
367362

368363
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/323
369-
[ConditionalTheory(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator)), InlineData(true), InlineData(false)]
364+
[Theory, InlineData(true), InlineData(false)]
370365
public virtual async Task SaveChanges_update_id_contains_special_chars_which_makes_request_larger_than_2_mib_splits_into_2_batches(bool isIdSpecialChar)
371366
{
372367
using var context = Fixture.CreateContext();

test/EFCore.Cosmos.FunctionalTests/EndToEndCosmosTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ namespace Microsoft.EntityFrameworkCore;
1414

1515
public class EndToEndCosmosTest(NonSharedFixture fixture) : NonSharedModelTestBase(fixture), IClassFixture<NonSharedFixture>
1616
{
17-
18-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/292 (Transactional batch limits not enforced)
19-
[ConditionalTheory(typeof(CosmosTestEnvironment), nameof(CosmosTestEnvironment.IsNotLinuxEmulator))]
17+
[Theory]
2018
[InlineData(false)]
2119
[InlineData(true)]
2220
public async Task Can_add_update_delete_end_to_end(bool transactionalBatch)

test/EFCore.Cosmos.FunctionalTests/Query/Associations/ComplexProperties/ComplexPropertiesCollectionCosmosTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FROM root c
2626
""");
2727
}
2828

29-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
29+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
3030
public override async Task Where()
3131
{
3232
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -197,7 +197,7 @@ public override Task GroupBy()
197197

198198
#endregion GroupBy
199199

200-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
200+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
201201
public override async Task Select_within_Select_within_Select_with_aggregates()
202202
{
203203
CosmosTestEnvironment.SkipOnLinuxEmulator();

test/EFCore.Cosmos.FunctionalTests/Query/Associations/ComplexProperties/ComplexPropertiesPrimitiveCollectionCosmosTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ FROM root c
7272
""");
7373
}
7474

75-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
75+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
7676
public override async Task Select_Sum()
7777
{
7878
CosmosTestEnvironment.SkipOnLinuxEmulator();

test/EFCore.Cosmos.FunctionalTests/Query/Associations/OwnedNavigations/OwnedNavigationsCollectionCosmosTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FROM root c
3939
""");
4040
}
4141

42-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
42+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
4343
public override async Task Where()
4444
{
4545
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -164,7 +164,7 @@ public override Task GroupBy()
164164

165165
#endregion GroupBy
166166

167-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
167+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
168168
public override async Task Select_within_Select_within_Select_with_aggregates()
169169
{
170170
CosmosTestEnvironment.SkipOnLinuxEmulator();

test/EFCore.Cosmos.FunctionalTests/Query/Associations/OwnedNavigations/OwnedNavigationsPrimitiveCollectionCosmosTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ FROM root c
7272
""");
7373
}
7474

75-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
75+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
7676
public override async Task Select_Sum()
7777
{
7878
CosmosTestEnvironment.SkipOnLinuxEmulator();

test/EFCore.Cosmos.FunctionalTests/Query/OwnedQueryCosmosTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ public override Task Indexer_property_is_pushdown_into_subquery(bool async)
817817
() => base.Indexer_property_is_pushdown_into_subquery(async),
818818
CosmosStrings.NonCorrelatedSubqueriesNotSupported);
819819

820-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
820+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
821821
public override Task Can_query_indexer_property_on_owned_collection(bool async)
822822
=> CosmosTestHelpers.Instance.NoSyncTest(
823823
async, async a =>

test/EFCore.Cosmos.FunctionalTests/Query/PrimitiveCollectionsQueryCosmosTest.cs

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FROM root c
5555
""");
5656
}
5757

58-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
58+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
5959
public override async Task Inline_collection_Count_with_zero_values()
6060
{
6161
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -73,7 +73,7 @@ FROM a IN (SELECT VALUE [])
7373
""");
7474
}
7575

76-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
76+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
7777
public override async Task Inline_collection_Count_with_one_value()
7878
{
7979
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -91,7 +91,7 @@ FROM a IN (SELECT VALUE [2])
9191
""");
9292
}
9393

94-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
94+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
9595
public override async Task Inline_collection_Count_with_two_values()
9696
{
9797
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -109,7 +109,7 @@ FROM a IN (SELECT VALUE [2, 999])
109109
""");
110110
}
111111

112-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
112+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
113113
public override async Task Inline_collection_Count_with_three_values()
114114
{
115115
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -251,7 +251,7 @@ FROM root c
251251
""");
252252
}
253253

254-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
254+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
255255
public override async Task Inline_collection_Min_with_two_values()
256256
{
257257
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -268,7 +268,7 @@ FROM a IN (SELECT VALUE [30, c["Int"]])) = 30)
268268
""");
269269
}
270270

271-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
271+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
272272
public override async Task Inline_collection_List_Min_with_two_values()
273273
{
274274
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -285,7 +285,7 @@ FROM a IN (SELECT VALUE [30, c["Int"]])) = 30)
285285
""");
286286
}
287287

288-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
288+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
289289
public override async Task Inline_collection_Max_with_two_values()
290290
{
291291
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -302,7 +302,7 @@ FROM a IN (SELECT VALUE [30, c["Int"]])) = 30)
302302
""");
303303
}
304304

305-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
305+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
306306
public override async Task Inline_collection_List_Max_with_two_values()
307307
{
308308
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -319,7 +319,7 @@ FROM a IN (SELECT VALUE [30, c["Int"]])) = 30)
319319
""");
320320
}
321321

322-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
322+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
323323
public override async Task Inline_collection_Min_with_three_values()
324324
{
325325
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -338,7 +338,7 @@ FROM a IN (SELECT VALUE [30, c["Int"], @i])) = 25)
338338
""");
339339
}
340340

341-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
341+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
342342
public override async Task Inline_collection_List_Min_with_three_values()
343343
{
344344
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -357,7 +357,7 @@ FROM a IN (SELECT VALUE [30, c["Int"], @i])) = 25)
357357
""");
358358
}
359359

360-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
360+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
361361
public override async Task Inline_collection_Max_with_three_values()
362362
{
363363
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -376,7 +376,7 @@ FROM a IN (SELECT VALUE [30, c["Int"], @i])) = 35)
376376
""");
377377
}
378378

379-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
379+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
380380
public override async Task Inline_collection_List_Max_with_three_values()
381381
{
382382
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -395,7 +395,7 @@ FROM a IN (SELECT VALUE [30, c["Int"], @i])) = 35)
395395
""");
396396
}
397397

398-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
398+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
399399
public override async Task Inline_collection_of_nullable_value_type_Min()
400400
{
401401
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -414,7 +414,7 @@ FROM a IN (SELECT VALUE [30, c["Int"], @i])) = 25)
414414
""");
415415
}
416416

417-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
417+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
418418
public override async Task Inline_collection_of_nullable_value_type_Max()
419419
{
420420
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -452,7 +452,7 @@ FROM a IN (SELECT VALUE [30, c["NullableInt"], @i])) = 30)
452452
""");
453453
}
454454

455-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
455+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
456456
public override async Task Inline_collection_of_nullable_value_type_with_null_Max()
457457
{
458458
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -481,7 +481,7 @@ public override async Task Inline_collection_with_single_parameter_element_Conta
481481
""");
482482
}
483483

484-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
484+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
485485
public override async Task Inline_collection_with_single_parameter_element_Count()
486486
{
487487
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -529,7 +529,7 @@ WHERE ARRAY_CONTAINS(@Select, c["NullableString"])
529529
""");
530530
}
531531

532-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
532+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
533533
public override async Task Inline_collection_Count_with_column_predicate_with_EF_Parameter()
534534
{
535535
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -549,7 +549,7 @@ FROM p IN (SELECT VALUE @p)
549549
""");
550550
}
551551

552-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
552+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
553553
public override async Task Inline_collection_in_query_filter()
554554
{
555555
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -572,7 +572,7 @@ public override async Task Inline_collection_SelectMany_with_unreferenced_collec
572572
=> await Assert.ThrowsAsync<InvalidOperationException>(
573573
() => base.Inline_collection_SelectMany_with_unreferenced_collection_value());
574574

575-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
575+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
576576
public override async Task Parameter_collection_Count()
577577
{
578578
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -1322,7 +1322,7 @@ FROM root c
13221322
""");
13231323
}
13241324

1325-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
1325+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
13261326
public override async Task Column_collection_Count_with_predicate()
13271327
{
13281328
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -1340,7 +1340,7 @@ FROM i IN c["Ints"]
13401340
""");
13411341
}
13421342

1343-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
1343+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
13441344
public override async Task Column_collection_Where_Count()
13451345
{
13461346
CosmosTestEnvironment.SkipOnLinuxEmulator();
@@ -2317,7 +2317,7 @@ FROM root c
23172317
""");
23182318
}
23192319

2320-
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/287 (Aggregates over subqueries return null result set)
2320+
// https://github.com/Azure/azure-cosmos-db-emulator-docker/issues/330 (Aggregates over subqueries return null result set)
23212321
public override async Task Values_of_enum_casted_to_underlying_value()
23222322
{
23232323
CosmosTestEnvironment.SkipOnLinuxEmulator();

0 commit comments

Comments
 (0)