Skip to content

Commit

Permalink
fine, bump the timeout...
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker committed Mar 28, 2024
1 parent e8855b8 commit 7c080d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oximeter/db/src/oxql/ast/grammar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ mod tests {
fn test_now_with_offset() {
fn check(expr: &str, expected: DateTime<Utc>) {
// Rough but still-useful bound in microseconds.
const MAX_DIFF_IN_MICROS: i64 = 500;
const MAX_DIFF_IN_MICROS: i64 = 1000;
let d = query_parser::now_timestamp(expr).unwrap();
let now = Utc::now();
let micros = d.timestamp_micros() - expected.timestamp_micros();
Expand Down

0 comments on commit 7c080d6

Please sign in to comment.