Merge conflict fix for redis cache exception handling

This commit is contained in:
Simon Zeltser 2018-06-29 11:16:10 -07:00
parent 84ff69147e
commit 17ffcb9a6e
2 changed files with 10 additions and 5 deletions

View file

@ -31,6 +31,7 @@ namespace cartservice
};
var cart = await client.GetCartAsync(request);
Assert.NotNull(cart);
// All grpc objects implement IEquitable, so we can compare equality with by-value semantics
Assert.Equal(new Cart(), cart);
}