diff --git a/test/FastTests/Sparrow/Memory.cs b/test/FastTests/Sparrow/Memory.cs index 877dfc7901e0..165813e2cea9 100644 --- a/test/FastTests/Sparrow/Memory.cs +++ b/test/FastTests/Sparrow/Memory.cs @@ -218,14 +218,14 @@ public void IncreasingSizeForLoop() s1Ptr[i] = 0x00; s2Ptr[i] = 0x00; - Assert.True(Memory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0); - Assert.True(AdvMemory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0); - Assert.True(AdvMemory.CompareSmallInlineNet6OorLesser(s1Ptr, s2Ptr, s1.Length) == 0); - Assert.True(AdvMemory.CompareSmallInlineNet7(s1Ptr, s2Ptr, s1.Length) == 0); + Assert.True(Memory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0, "Memory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0"); + Assert.True(AdvMemory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0, "AdvMemory.CompareInline(s1Ptr, s2Ptr, s1.Length) == 0"); + Assert.True(AdvMemory.CompareSmallInlineNet6OorLesser(s1Ptr, s2Ptr, s1.Length) == 0, "AdvMemory.CompareSmallInlineNet6OorLesser(s1Ptr, s2Ptr, s1.Length) == 0"); + Assert.True(AdvMemory.CompareSmallInlineNet7(s1Ptr, s2Ptr, s1.Length) == 0, "AdvMemory.CompareSmallInlineNet7(s1Ptr, s2Ptr, s1.Length) == 0"); if (Avx2.IsSupported) { - Assert.True(AdvMemory.CompareAvx2(s1Ptr, s2Ptr, s1.Length) == 0); + Assert.True(AdvMemory.CompareAvx2(s1Ptr, s2Ptr, s1.Length) == 0, "AdvMemory.CompareAvx2(s1Ptr, s2Ptr, s1.Length) == 0"); } } catch