Fix incorrect method call

Copypasta oops, previous commit at fault.
This commit is contained in:
Kurt 2022-08-18 01:17:03 -07:00
parent 5cfaf7eecd
commit 44c8e772a3
2 changed files with 3 additions and 3 deletions

View file

@ -689,13 +689,13 @@ public static class MethodFinder
Debug.Assert(rand3 >> 15 == 0);
rand1 <<= 16;
rand3 <<= 16;
var attempt1 = method.RecoverLower16Bits(rand1, rand3);
var attempt1 = method.RecoverLower16BitsGap(rand1, rand3);
foreach (var z in attempt1)
{
yield return z;
yield return z ^ 0x80000000; // sister bitflip
}
var attempt2 = method.RecoverLower16Bits(rand1, rand3 ^ 0x80000000);
var attempt2 = method.RecoverLower16BitsGap(rand1, rand3 ^ 0x80000000);
foreach (var z in attempt2)
{
yield return z;

View file

@ -65,7 +65,7 @@ public class PIDIVTest
Assert.Equal(pk3.PID, gk3.PID);
Assert.True(pk3.IVs.SequenceEqual(gk3.IVs), "Unable to match generated IVs to CXD spread");
}
[Fact]
public void PIDIVMatchingTest3MiscChannel()
{