File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
FunctionalTests/Microsoft.Bot.Builder.FunctionalTests Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -110,31 +110,31 @@ private void GetEnvironmentVars()
110
110
_roomId = Environment . GetEnvironmentVariable ( "WebexTestBotWebexRoomId" ) ;
111
111
if ( string . IsNullOrWhiteSpace ( _roomId ) )
112
112
{
113
- Assert . Fail ( "Environment variable 'WebexTestBotWebexRoomId' not found." ) ;
113
+ Assert . Inconclusive ( "Environment variable 'WebexTestBotWebexRoomId' not found." ) ;
114
114
}
115
115
116
116
_refreshToken = Environment . GetEnvironmentVariable ( "WebexTestBotRefreshToken" ) ;
117
117
if ( string . IsNullOrWhiteSpace ( _refreshToken ) )
118
118
{
119
- Assert . Fail ( "Environment variable 'WebexTestBotRefreshToken' not found." ) ;
119
+ Assert . Inconclusive ( "Environment variable 'WebexTestBotRefreshToken' not found." ) ;
120
120
}
121
121
122
122
_integrationClientId = Environment . GetEnvironmentVariable ( "WebexTestBotWebexIntegrationClientId" ) ;
123
123
if ( string . IsNullOrWhiteSpace ( _integrationClientId ) )
124
124
{
125
- Assert . Fail ( "Environment variable 'WebexTestBotWebexIntegrationClientId' not found." ) ;
125
+ Assert . Inconclusive ( "Environment variable 'WebexTestBotWebexIntegrationClientId' not found." ) ;
126
126
}
127
127
128
128
_integrationClientSecret = Environment . GetEnvironmentVariable ( "WebexTestBotWebexIntegrationClientSecret" ) ;
129
129
if ( string . IsNullOrWhiteSpace ( _integrationClientSecret ) )
130
130
{
131
- Assert . Fail ( "Environment variable 'WebexTestBotWebexIntegrationClientSecret' not found." ) ;
131
+ Assert . Inconclusive ( "Environment variable 'WebexTestBotWebexIntegrationClientSecret' not found." ) ;
132
132
}
133
133
134
134
_targetBotEmail = Environment . GetEnvironmentVariable ( "WebexTestBotWebexBotUserName" ) ;
135
135
if ( string . IsNullOrWhiteSpace ( _targetBotEmail ) )
136
136
{
137
- Assert . Fail ( "Environment variable 'WebexTestBotWebexBotUserName' not found." ) ;
137
+ Assert . Inconclusive ( "Environment variable 'WebexTestBotWebexBotUserName' not found." ) ;
138
138
}
139
139
}
140
140
}
You can’t perform that action at this time.
0 commit comments