Skip to content

Commit

Permalink
fix(cpast_cli): allow pipe of generated testcases easily
Browse files Browse the repository at this point in the history
  • Loading branch information
rootCircle committed Oct 31, 2024
1 parent 383d7e6 commit 94458dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpast/src/cmd/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ pub(crate) fn generate_call(args: GenerateArgs) {
match generator(language) {
Ok(testcase) => {
let generated_testcases = testcase;
println!("=====================================");
eprintln!("=====================================");
println!("{}", &generated_testcases);
println!("=====================================");
eprintln!("=====================================");
if args.clipboard {
copy_content_to_clipboard(generated_testcases);
}
Expand Down

0 comments on commit 94458dd

Please sign in to comment.