Skip to content

Commit

Permalink
fix path to valve in random data generation script
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcmicu committed Nov 7, 2023
1 parent c133071 commit 33ce7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/generate_random_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def main():
random.seed(seed)

# Get the VALVE configuration:
result = subprocess.run(["valve", "--dump_config", input_table], capture_output=True)
result = subprocess.run(["./valve", "--dump_config", input_table], capture_output=True)
if result.returncode != 0:
error = result.stderr.decode()
output = result.stdout.decode()
Expand Down

0 comments on commit 33ce7af

Please sign in to comment.