File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public bool Validate()
8282 {
8383 // The emulator provides the usage quotas as described at:
8484 // https://learn.microsoft.com/en-us/azure/event-hubs/overview-emulator#usage-quotas.
85- Predicate < Entity > isValidEntity = entity => entity . PartitionCount > 0 && entity . PartitionCount <= 32 && entity . ConsumerGroups . Count >= 0 && entity . ConsumerGroups . Count <= 20 ;
85+ Predicate < Entity > isValidEntity = entity => entity . PartitionCount > 0 && entity . PartitionCount <= 32 && entity . ConsumerGroups . Count > 0 && entity . ConsumerGroups . Count <= 20 ;
8686 return _namespaceConfig . Entities . Count > 0 && _namespaceConfig . Entities . Count <= 10 && _namespaceConfig . Entities . All ( entity => isValidEntity ( entity ) ) ;
8787 }
8888
Original file line number Diff line number Diff line change 1- namespace DotNet . Testcontainers . Images
1+ namespace DotNet . Testcontainers . Images
22{
33 using DotNet . Testcontainers . Configurations ;
44
You can’t perform that action at this time.
0 commit comments