diff options
| author | gingerBill <bill@gingerbill.org> | 2023-05-29 15:18:38 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-05-29 15:18:38 +0100 |
| commit | 8b825b23b149924f1980e13d27f80414dd203e3e (patch) | |
| tree | c3b09d9676924e6849e165e5fac4e0da146a1a68 /tests | |
| parent | d2f62730bc26fd18355de3c86d2d825a221aa288 (diff) | |
Add missing comma
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/crypto/test_core_crypto_modern.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/crypto/test_core_crypto_modern.odin b/tests/core/crypto/test_core_crypto_modern.odin index 1d76b715b..8f7abb5e8 100644 --- a/tests/core/crypto/test_core_crypto_modern.odin +++ b/tests/core/crypto/test_core_crypto_modern.odin @@ -272,7 +272,7 @@ test_x25519 :: proc(t: ^testing.T) { // Local copy of this so that the base point doesn't need to be exported. _BASE_POINT: [32]byte = { 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } test_vectors := [?]TestECDH { |