summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2019-06-12 21:52:54 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2019-06-12 21:54:10 +0700
commit437e30aae96b7b2f41ce5e5c1f7552710ad0ca57 (patch)
treeb719a63eda479fb5a9241ca179a01da1742ee25c
parentRefactoring (diff)
parentUpdate ECPointTest.cs (diff)
downloadBouncyCastle.NET-ed25519-437e30aae96b7b2f41ce5e5c1f7552710ad0ca57.tar.xz
Merge branch 'rastrup-patch-8'
-rw-r--r--crypto/test/src/math/ec/test/ECPointTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/math/ec/test/ECPointTest.cs b/crypto/test/src/math/ec/test/ECPointTest.cs
index a5ca083e2..dbd739023 100644
--- a/crypto/test/src/math/ec/test/ECPointTest.cs
+++ b/crypto/test/src/math/ec/test/ECPointTest.cs
@@ -268,12 +268,12 @@ namespace Org.BouncyCastle.Math.EC.Tests
         {
             for (int i = 0; i < Fp.p.Length; i++)
             {
-                ImplTestAllPoints(Fp.p[0], Fp.infinity);
+                ImplTestAllPoints(Fp.p[i], Fp.infinity);
             }
 
             for (int i = 0; i < F2m.p.Length; i++)
             {
-                ImplTestAllPoints(F2m.p[0], F2m.infinity);
+                ImplTestAllPoints(F2m.p[i], F2m.infinity);
             }
         }