Skip to content
Snippets Groups Projects
Commit cca098e7 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #6299 from jtattermusch/fix_5912

Fix Grpc.IntegrationTesting.InteropClientServerTest flake 
parents e0183305 85c3ab0b
No related branches found
No related tags found
No related merge requests found
......@@ -494,7 +494,8 @@ namespace Grpc.IntegrationTesting
}
var ex = Assert.ThrowsAsync<RpcException>(async () => await call.ResponseStream.MoveNext());
Assert.AreEqual(StatusCode.DeadlineExceeded, ex.Status.StatusCode);
// We can't guarantee the status code always DeadlineExceeded. See issue #2685.
Assert.Contains(ex.Status.StatusCode, new[] { StatusCode.DeadlineExceeded, StatusCode.Internal });
}
Console.WriteLine("Passed!");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment