diff --git a/yarn-project/circuits.js/src/tests/fixtures.ts b/yarn-project/circuits.js/src/tests/fixtures.ts index 2ed6c3e784a9..ee8146a79fe1 100644 --- a/yarn-project/circuits.js/src/tests/fixtures.ts +++ b/yarn-project/circuits.js/src/tests/fixtures.ts @@ -13,9 +13,9 @@ export function getBenchmarkContractArtifact(): ContractArtifact { return loadContractArtifact(content); } -// Copied from the build output for the contract `Benchmarking` in noir-contracts +// Copied from the build output for the contract `Test` in noir-contracts export function getTestContractArtifact(): ContractArtifact { - const path = getPathToFixture('Benchmarking.test.json'); + const path = getPathToFixture('Test.test.json'); const content = JSON.parse(readFileSync(path).toString()) as NoirCompiledContract; return loadContractArtifact(content); }