Skip to content

Commit a1a8499

Browse files
author
LocalizationBuildProcess
committed
Revert WebexClientTest.cs
1 parent 26d3df3 commit a1a8499

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

FunctionalTests/Microsoft.Bot.Builder.FunctionalTests/WebexClientTest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,31 +110,31 @@ private void GetEnvironmentVars()
110110
_roomId = Environment.GetEnvironmentVariable("WebexTestBotWebexRoomId");
111111
if (string.IsNullOrWhiteSpace(_roomId))
112112
{
113-
Assert.Fail("Environment variable 'WebexTestBotWebexRoomId' not found.");
113+
Assert.Inconclusive("Environment variable 'WebexTestBotWebexRoomId' not found.");
114114
}
115115

116116
_refreshToken = Environment.GetEnvironmentVariable("WebexTestBotRefreshToken");
117117
if (string.IsNullOrWhiteSpace(_refreshToken))
118118
{
119-
Assert.Fail("Environment variable 'WebexTestBotRefreshToken' not found.");
119+
Assert.Inconclusive("Environment variable 'WebexTestBotRefreshToken' not found.");
120120
}
121121

122122
_integrationClientId = Environment.GetEnvironmentVariable("WebexTestBotWebexIntegrationClientId");
123123
if (string.IsNullOrWhiteSpace(_integrationClientId))
124124
{
125-
Assert.Fail("Environment variable 'WebexTestBotWebexIntegrationClientId' not found.");
125+
Assert.Inconclusive("Environment variable 'WebexTestBotWebexIntegrationClientId' not found.");
126126
}
127127

128128
_integrationClientSecret = Environment.GetEnvironmentVariable("WebexTestBotWebexIntegrationClientSecret");
129129
if (string.IsNullOrWhiteSpace(_integrationClientSecret))
130130
{
131-
Assert.Fail("Environment variable 'WebexTestBotWebexIntegrationClientSecret' not found.");
131+
Assert.Inconclusive("Environment variable 'WebexTestBotWebexIntegrationClientSecret' not found.");
132132
}
133133

134134
_targetBotEmail = Environment.GetEnvironmentVariable("WebexTestBotWebexBotUserName");
135135
if (string.IsNullOrWhiteSpace(_targetBotEmail))
136136
{
137-
Assert.Fail("Environment variable 'WebexTestBotWebexBotUserName' not found.");
137+
Assert.Inconclusive("Environment variable 'WebexTestBotWebexBotUserName' not found.");
138138
}
139139
}
140140
}

0 commit comments

Comments
 (0)