Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwarzam committed Jun 9, 2024
1 parent 227712b commit 53f11d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ mod parser {
let file_path = paths::get_testdata_path("Npix=754.parquet");
let mut params = HashMap::new();

params.insert("cols".to_string(), "RA,DEC".to_string());
params.insert("query".to_string(), "RA>=30.1241,DEC<=-30.3".to_string());
params.insert("columns".to_string(), "RA,DEC".to_string());
params.insert("filters".to_string(), "RA>=30.1241,DEC<=-30.3,RA>30,DEC<-30,RA==1,RA=1,RA!=0".to_string());

let result = parquet::parquet::process_and_return_parquet_file(
file_path.to_str().unwrap(),
Expand Down

0 comments on commit 53f11d8

Please sign in to comment.