We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ed7d3 commit a68fba3Copy full SHA for a68fba3
tests/basic_tests.rs
@@ -41,7 +41,9 @@ async fn get_basic_cluster() -> &'static TestCluster {
41
let config = ClusterConfig::new()
42
.with_base_port(33000) // Use different port range from TPC-H tests
43
.with_csv_table("customers", "testdata/mock/customers.csv")
44
- .with_csv_table("orders", "testdata/mock/orders.csv");
+ .expect("Failed to configure customers table")
45
+ .with_csv_table("orders", "testdata/mock/orders.csv")
46
+ .expect("Failed to configure orders table");
47
48
let cluster = TestCluster::start_with_config(config)
49
.await
0 commit comments