Skip to content

Commit

Permalink
cleanup for linter and erroneous unused code
Browse files Browse the repository at this point in the history
Signed-off-by: David Zwerdling <zwerdlds@gmail.com>
  • Loading branch information
zwerdlds committed May 22, 2023
1 parent ecb084c commit 01e4f71
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crates/rsonpath-lib/src/query/automaton/minimizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,6 @@ mod tests {
// Query = $..a.*
let label = Label::new("a");
let label = (&label).into();
"a";

let nfa = NondeterministicAutomaton {
ordered_states: vec![
Expand Down
2 changes: 1 addition & 1 deletion crates/rsonpath-lib/src/query/nonnegative_array_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ mod tests {

#[test]
fn index_ulimit_sanity_check() {
assert_eq!(9007199254740991, ARRAY_INDEX_ULIMIT);
assert_eq!(9_007_199_254_740_991, ARRAY_INDEX_ULIMIT);
}

#[test]
Expand Down

0 comments on commit 01e4f71

Please sign in to comment.