From 81e6046698ce7980793c44e5aae2cd1315aa1348 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Mon, 10 Apr 2023 03:23:35 +0000 Subject: [PATCH] test: move vector --- test/nist.test.js | 2 +- test/{fixtures => vectors}/rfc6979.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test/{fixtures => vectors}/rfc6979.json (100%) diff --git a/test/nist.test.js b/test/nist.test.js index 835007f..27939ae 100644 --- a/test/nist.test.js +++ b/test/nist.test.js @@ -9,7 +9,7 @@ import { secp256k1 } from '../esm/secp256k1.js'; import { hexToBytes, bytesToHex } from '../esm/abstract/utils.js'; import { default as ecdsa } from './wycheproof/ecdsa_test.json' assert { type: 'json' }; import { default as ecdh } from './wycheproof/ecdh_test.json' assert { type: 'json' }; -import { default as rfc6979 } from './fixtures/rfc6979.json' assert { type: 'json' }; +import { default as rfc6979 } from './vectors/rfc6979.json' assert { type: 'json' }; import { default as ecdh_secp224r1_test } from './wycheproof/ecdh_secp224r1_test.json' assert { type: 'json' }; import { default as ecdh_secp256r1_test } from './wycheproof/ecdh_secp256r1_test.json' assert { type: 'json' }; diff --git a/test/fixtures/rfc6979.json b/test/vectors/rfc6979.json similarity index 100% rename from test/fixtures/rfc6979.json rename to test/vectors/rfc6979.json