diff --git a/test_programs/compile_success_empty/check_uncostrained_regression/Nargo.toml b/test_programs/compile_success_contract/check_uncostrained_regression/Nargo.toml similarity index 100% rename from test_programs/compile_success_empty/check_uncostrained_regression/Nargo.toml rename to test_programs/compile_success_contract/check_uncostrained_regression/Nargo.toml diff --git a/test_programs/compile_success_empty/check_uncostrained_regression/src/main.nr b/test_programs/compile_success_contract/check_uncostrained_regression/src/main.nr similarity index 100% rename from test_programs/compile_success_empty/check_uncostrained_regression/src/main.nr rename to test_programs/compile_success_contract/check_uncostrained_regression/src/main.nr diff --git a/tooling/nargo_cli/build.rs b/tooling/nargo_cli/build.rs index 0a3cfe7ceff..24f7ac63641 100644 --- a/tooling/nargo_cli/build.rs +++ b/tooling/nargo_cli/build.rs @@ -314,7 +314,6 @@ fn generate_compile_success_no_bugs_contract_tests(test_file: &mut File, test_da &test_dir, r#" nargo.arg("compile").arg("--force"); - nargo.assert().success();"#, ); @@ -326,7 +325,7 @@ fn generate_compile_success_no_bugs_contract_tests(test_file: &mut File, test_da r#" nargo.arg("compile").arg("--force").arg("--use-legacy"); - nargo.assert().success().stderr(predicate::str::contains("bug").not());"#, + nargo.assert().success();"#, ); } }