diff --git a/IncubatingIntegrationTest/SetTest.cs b/IncubatingIntegrationTest/SetTest.cs index 29a9b1ef..da374221 100644 --- a/IncubatingIntegrationTest/SetTest.cs +++ b/IncubatingIntegrationTest/SetTest.cs @@ -276,6 +276,7 @@ public async Task SetRemoveElementAsync_ElementIsByteArray_HappyPath() // Remove element that is not there -- no-op await client.SetRemoveElementAsync(cacheName, setName, Utils.NewGuidByteArray()); + // Fetch the whole set and make sure response has element we expect var fetchResponse = await client.SetFetchAsync(cacheName, setName); Assert.Equal(CacheGetStatus.HIT, fetchResponse.Status); var set = fetchResponse.ByteArraySet;