From 937fb0d0e01b008ea1713f01899d256a36861d1c Mon Sep 17 00:00:00 2001 From: Joe C Date: Thu, 12 Dec 2024 11:37:36 +0900 Subject: [PATCH] Update scripts/ci/fd-conformance.mjs Co-authored-by: Jon C --- scripts/ci/fd-conformance.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/fd-conformance.mjs b/scripts/ci/fd-conformance.mjs index ad41a21..6ad692e 100644 --- a/scripts/ci/fd-conformance.mjs +++ b/scripts/ci/fd-conformance.mjs @@ -17,7 +17,7 @@ const testVectorsPath = path.join(harnessPath, 'impl', 'test-vectors'); await $`git clone https://github.com/firedancer-io/test-vectors.git ${testVectorsPath}`; // Add the Mollusk-generated fixtures to the test inputs. -const firedancerFixturesPath = path.join(testVectorsPath, 'instr', 'fixtures', 'config'); +const firedancerFixturesPath = path.join(testVectorsPath, 'instr', 'fixtures', 'address-lookup-table'); const molluskFixturesPath = path.join(workingDirectory, 'program', 'fuzz', 'blob'); await $`cp -a ${molluskFixturesPath}/. ${firedancerFixturesPath}/`;