Skip to content

Commit eb369aa

Browse files
authored
update1 (Azure#46659)
1 parent 5664b36 commit eb369aa

File tree

6 files changed

+3
-17
lines changed

6 files changed

+3
-17
lines changed

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"AssetsRepo": "Azure/azure-sdk-assets",
33
"AssetsRepoPrefixPath": "net",
44
"TagPrefix": "net/securitycenter/Azure.ResourceManager.SecurityCenter",
5-
"Tag": "net/securitycenter/Azure.ResourceManager.SecurityCenter_4103de93a6"
5+
"Tag": "net/securitycenter/Azure.ResourceManager.SecurityCenter_4d5901f3b9"
66
}

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/tests/Azure.ResourceManager.SecurityCenter.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<ItemGroup>
33
<PackageReference Include="Azure.ResourceManager.Compute" />
4-
<PackageReference Include="Azure.ResourceManager.IotHub" VersionOverride="1.0.0" />
5-
<PackageReference Include="Azure.ResourceManager.Logic" VersionOverride="1.0.0" />
4+
<PackageReference Include="Azure.ResourceManager.IotHub" VersionOverride="1.2.0-beta.1" />
5+
<PackageReference Include="Azure.ResourceManager.Logic" VersionOverride="1.2.0-beta.1" />
66
<PackageReference Include="Azure.ResourceManager.Network" />
77
</ItemGroup>
88
<ItemGroup>

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/tests/Scenario/AutomationCollectionTests.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ private async Task<SecurityAutomationResource> CreateSecurityAutomation(string a
6767
}
6868

6969
[RecordedTest]
70-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
7170
public async Task CreateOrUpdate()
7271
{
7372
string automationName = Recording.GenerateAssetName("automation");
@@ -76,7 +75,6 @@ public async Task CreateOrUpdate()
7675
}
7776

7877
[RecordedTest]
79-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
8078
public async Task Exist()
8179
{
8280
string automationName = Recording.GenerateAssetName("automation");
@@ -86,7 +84,6 @@ public async Task Exist()
8684
}
8785

8886
[RecordedTest]
89-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
9087
public async Task Get()
9188
{
9289
string automationName = Recording.GenerateAssetName("automation");
@@ -96,7 +93,6 @@ public async Task Get()
9693
}
9794

9895
[RecordedTest]
99-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
10096

10197
public async Task GetAll()
10298
{
@@ -108,7 +104,6 @@ public async Task GetAll()
108104
}
109105

110106
[RecordedTest]
111-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
112107
public async Task Delete()
113108
{
114109
string automationName = Recording.GenerateAssetName("automation");
@@ -124,7 +119,6 @@ public async Task Delete()
124119
[TestCase(null)]
125120
[TestCase(false)]
126121
[TestCase(true)]
127-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
128122
public async Task AddRemoveTag(bool? useTagResource)
129123
{
130124
SetTagResourceUsage(Client, useTagResource);

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/tests/Scenario/IotSecurityAggregatedAlertTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ public async Task Dismiss()
5252
}
5353

5454
[RecordedTest]
55-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
5655
public async Task GetAll()
5756
{
5857
var list = await _iotSecurityAggregatedAlertCollection.GetAllAsync().ToEnumerableAsync();

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/tests/Scenario/IotSecurityAggregatedRecommendationTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public async Task Get()
4343
}
4444

4545
[RecordedTest]
46-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
4746
public async Task GetAll()
4847
{
4948
var list = await _iotSecurityAggregatedRecommendationCollection.GetAllAsync().ToEnumerableAsync();

sdk/securitycenter/Azure.ResourceManager.SecurityCenter/tests/Scenario/IotSecuritySolutionTests.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public async Task TestSetUp()
3333
}
3434

3535
[RecordedTest]
36-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
3736
public async Task CreateOrUpdate()
3837
{
3938
string solutionName = Recording.GenerateAssetName("solution");
@@ -42,7 +41,6 @@ public async Task CreateOrUpdate()
4241
}
4342

4443
[RecordedTest]
45-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
4644
public async Task Exist()
4745
{
4846
string solutionName = Recording.GenerateAssetName("solution");
@@ -52,7 +50,6 @@ public async Task Exist()
5250
}
5351

5452
[RecordedTest]
55-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
5653
public async Task Get()
5754
{
5855
string solutionName = Recording.GenerateAssetName("solution");
@@ -62,7 +59,6 @@ public async Task Get()
6259
}
6360

6461
[RecordedTest]
65-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
6662
public async Task GetAll()
6763
{
6864
string solutionName = Recording.GenerateAssetName("solution");
@@ -73,7 +69,6 @@ public async Task GetAll()
7369
}
7470

7571
[RecordedTest]
76-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
7772
public async Task Delete()
7873
{
7974
string solutionName = Recording.GenerateAssetName("solution");
@@ -89,7 +84,6 @@ public async Task Delete()
8984
[TestCase(null)]
9085
[TestCase(false)]
9186
[TestCase(true)]
92-
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
9387
public async Task AddRemoveTag(bool? useTagResource)
9488
{
9589
SetTagResourceUsage(Client, useTagResource);

0 commit comments

Comments
 (0)