test: fix flaky `influxdb_ioxd::http::tests::test_delete`

pull/24376/head
Marco Neumann 2021-10-04 10:40:40 +02:00
parent 846db0f1ff
commit bd39fae99d
1 changed files with 5 additions and 1 deletions

View File

@ -1113,7 +1113,11 @@ mod tests {
let test_db = app_server
.db(&DatabaseName::new("MyOrg_MyBucket").unwrap())
.expect("Database exists");
let batches = run_query(Arc::clone(&test_db), "select * from h2o_temperature").await;
let batches = run_query(
Arc::clone(&test_db),
"select * from h2o_temperature order by location",
)
.await;
let expected = vec![
"+----------------+--------------+-------+-----------------+--------------------------------+",
"| bottom_degrees | location | state | surface_degrees | time |",