We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b66abb commit 435358cCopy full SHA for 435358c
src/Common/Commands.ScenarioTests.Common/EnvironmentSetupHelper.cs
@@ -41,9 +41,11 @@ public class EnvironmentSetupHelper
41
42
public EnvironmentSetupHelper()
43
{
44
- AzureSession.DataStore = new MockDataStore();
+ var datastore = new MockDataStore();
45
+ AzureSession.DataStore = datastore;
46
var profile = new AzureProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile));
47
AzurePSCmdlet.CurrentProfile = profile;
48
49
ProfileClient = new ProfileClient(profile);
50
51
// Ignore SSL errors
0 commit comments