Skip to content

Commit

Permalink
Fix integration tests due to new Azure resources (#1212)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkerkhove authored Aug 12, 2020
1 parent 5261ebb commit 4d434c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel;
using System.Net;
using System.Threading.Tasks;
Expand Down Expand Up @@ -39,7 +39,7 @@ public async Task ResourceDiscovery_GetAllPerResourceTypeWithoutFilters_ReturnsE
{
// Arrange
const string resourceDiscoveryGroupName = "logic-apps-unfiltered";
const int expectedResourceCount = 11;
const int expectedResourceCount = 13;
var resourceDiscoveryClient = new ResourceDiscoveryClient(Configuration, Logger);

// Act
Expand Down Expand Up @@ -119,7 +119,7 @@ public async Task ResourceDiscovery_GetWithFilterOnTwoSubscriptions_ReturnsExpec
{
// Arrange
const string resourceDiscoveryGroupName = "two-subscriptions-scenario";
const int expectedResourceCount = 11;
const int expectedResourceCount = 13;
var resourceDiscoveryClient = new ResourceDiscoveryClient(Configuration, Logger);

// Act
Expand Down Expand Up @@ -199,7 +199,7 @@ public async Task ResourceDiscovery_GetWithFilterOnTwoRegions_ReturnsExpectedAmo
{
// Arrange
const string resourceDiscoveryGroupName = "two-region-scenario";
const int expectedResourceCount = 10;
const int expectedResourceCount = 12;
var resourceDiscoveryClient = new ResourceDiscoveryClient(Configuration, Logger);

// Act
Expand Down

0 comments on commit 4d434c4

Please sign in to comment.