Skip to content

Commit e58d1f8

Browse files
committed
Resolve PR comments.
1 parent 7eaf123 commit e58d1f8

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@
122122
</ProjectReference>
123123
</ItemGroup>
124124
<ItemGroup>
125-
<None Include="app.config" />
126125
<None Include="packages.config" />
127126
<None Include="ScenarioTests\Common.ps1">
128127
<CopyToOutputDirectory>Always</CopyToOutputDirectory>

src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ namespace Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests
2727
{
2828
public class TestController
2929
{
30-
bool testViaCsm = true; // Currently set to true, we will get this from Environment varialbe.
31-
3230
private CSMTestEnvironmentFactory csmTestFactory;
3331
private EnvironmentSetupHelper helper;
3432

@@ -163,9 +161,7 @@ private GalleryClient GetGalleryClient()
163161

164162
private StorageManagementClient GetStorageManagementClient()
165163
{
166-
return testViaCsm
167-
? TestBase.GetServiceClient<StorageManagementClient>(this.csmTestFactory)
168-
: TestBase.GetServiceClient<StorageManagementClient>(new RDFETestEnvironmentFactory());
164+
return TestBase.GetServiceClient<StorageManagementClient>(this.csmTestFactory);
169165
}
170166
}
171167
}

0 commit comments

Comments
 (0)