Skip to content

Commit

Permalink
Fix usage
Browse files Browse the repository at this point in the history
  • Loading branch information
FriggaHel committed Mar 18, 2024
1 parent daee6dc commit 94afb7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visual-dotnet/SauceLabs.Visual/VisualClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public VisualClient(WebDriver wd, Region region, CreateBuildOptions buildOptions
/// <param name="buildOptions">the options of the build creation</param>
public VisualClient(WebDriver wd, Region region, string username, string accessKey, CreateBuildOptions buildOptions)
{
if (string.IsNullOrWhiteSpace(username) || string.IsNullOrEmpty(accessKey))
if (string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(accessKey))
{
throw new VisualClientException("Username or Access Key not set");
}
Expand Down

0 comments on commit 94afb7f

Please sign in to comment.