From def2d3f1edd10c78510489ee2ce7081a8ee697a2 Mon Sep 17 00:00:00 2001 From: Ian Joiner <14581281+iajoiner@users.noreply.github.com> Date: Thu, 7 Nov 2024 01:14:56 -0500 Subject: [PATCH] fix: `generate-parameters/round_trip_test.rs` reqauires --bin now --- .../proof-of-sql/utils/generate-parameters/round_trip_test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/proof-of-sql/utils/generate-parameters/round_trip_test.rs b/crates/proof-of-sql/utils/generate-parameters/round_trip_test.rs index 37aeea7dd..b7ce2d429 100644 --- a/crates/proof-of-sql/utils/generate-parameters/round_trip_test.rs +++ b/crates/proof-of-sql/utils/generate-parameters/round_trip_test.rs @@ -19,6 +19,8 @@ fn we_can_generate_save_and_load_public_setups() { // Run the binary with nu = 4, mode = "pv", and target as the temp directory let output = Command::new("cargo") .arg("run") + .arg("--bin") + .arg("generate-parameters") .arg("--release") .arg("--") .arg("--nu")