From 9f44eb3e82928a2ee870b79ecbf4b069ed55227a Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Thu, 14 Jan 2021 00:29:08 +0100 Subject: [PATCH] Tests: Allow slightly more differences in DLL output bytes --- Il2CppTests/TestRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppTests/TestRunner.cs b/Il2CppTests/TestRunner.cs index 6d0986c..5d21f31 100644 --- a/Il2CppTests/TestRunner.cs +++ b/Il2CppTests/TestRunner.cs @@ -218,7 +218,7 @@ namespace Il2CppInspector var differences = resultData.Zip(expectedData, (x, y) => x == y).Count(eq => !eq); // If anything has really changed it will change more than this many bytes - Assert.LessOrEqual(differences, 18, $"File contents differ too much ({file} has {differences} differences)"); + Assert.LessOrEqual(differences, 25, $"File contents differ too much ({file} has {differences} differences)"); } }