[autoformat] Update some new code. (#16967)
This is code from PRs that were started before we started autoformatting the files in question, and then merged afterwards.
This commit is contained in:
Родитель
36125e3b3f
Коммит
94bdee0d7c
|
@ -393,7 +393,7 @@ namespace Xamarin.BindingTests {
|
|||
|
||||
public override int GetHashCode ()
|
||||
{
|
||||
return HashCode.Combine(Name, Value);
|
||||
return HashCode.Combine (Name, Value);
|
||||
}
|
||||
|
||||
public override string ToString ()
|
||||
|
|
|
@ -28,12 +28,12 @@ namespace LinkAnyTest {
|
|||
|
||||
void TimedWait (Task task)
|
||||
{
|
||||
var rv = task.Wait (TimeSpan.FromMinutes (1));
|
||||
if (rv)
|
||||
return;
|
||||
var rv = task.Wait (TimeSpan.FromMinutes (1));
|
||||
if (rv)
|
||||
return;
|
||||
|
||||
TestRuntime.IgnoreInCI ("This test times out randomly in CI due to bad network.");
|
||||
Assert.Fail ("Test timed out");
|
||||
TestRuntime.IgnoreInCI ("This test times out randomly in CI due to bad network.");
|
||||
Assert.Fail ("Test timed out");
|
||||
}
|
||||
|
||||
// http://blogs.msdn.com/b/csharpfaq/archive/2012/06/26/understanding-a-simple-async-program.aspx
|
||||
|
|
Загрузка…
Ссылка в новой задаче