From 98110356d12e44e7a08341cba84bcacc274d423e Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Thu, 22 Jul 2021 23:28:59 -0700 Subject: [PATCH] fix test --- columnq/src/table/json.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/columnq/src/table/json.rs b/columnq/src/table/json.rs index 62b17fbd4..8cb4a0829 100644 --- a/columnq/src/table/json.rs +++ b/columnq/src/table/json.rs @@ -177,7 +177,7 @@ mod tests { async fn nested_struct_and_lists() -> Result<(), ColumnQError> { let t = to_mem_table(&TableSource::new( "spacex_launches".to_string(), - test_data_path("spacex-launches.json"), + test_data_path("spacex_launches.json"), )) .await?;