We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db002cf commit de22426Copy full SHA for de22426
1 file changed
tests/cli_cases/tpch.rs
@@ -73,14 +73,16 @@ async fn test_custom_config_with_s3() {
73
);
74
let config = config_builder.build("my_config.toml");
75
76
- Command::cargo_bin("dft")
+ let a = Command::cargo_bin("dft")
77
.unwrap()
78
.arg("--config")
79
.arg(config.path)
80
.arg("generate-tpch")
81
.assert()
82
.success();
83
84
+ println!("A: {a:?}");
85
+
86
let s3 = AmazonS3Builder::new()
87
.with_bucket_name(bucket)
88
.with_endpoint(endpoint)
0 commit comments