Skip to content

Commit 6c9ee2f

Browse files
committed
StyleCop warning fixes. No functional changes.
1 parent d1bd270 commit 6c9ee2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: dotnet/src/support/Extensions/WebDriverExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public static T ExecuteJavaScript<T>(this IWebDriver driver, string script, para
8686
}
8787

8888
object result = executor.ExecuteScript(script, args);
89-
if (typeof (T).IsInstanceOfType(result) == false)
89+
if (typeof(T).IsInstanceOfType(result) == false)
9090
{
9191
throw new WebDriverException("Script returned a value, but the result could not be cast to the desired type");
9292
}

0 commit comments

Comments
 (0)