Skip to content

Commit

Permalink
sql_ext: ignore another clippy warning
Browse files Browse the repository at this point in the history
Summary: This code is only used to test that it compiles. We don't care about warnings or clippy lints, as demonstrated by the fact we already ignore many others.

Differential Revision: D51109786

fbshipit-source-id: a4c646760e61cf88290131658db2682ffdc082e5
  • Loading branch information
Pierre Chevalier authored and facebook-github-bot committed Nov 8, 2023
1 parent 049d8b7 commit 8ddd002
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eden/mononoke/common/rust/sql_ext/src/mononoke_queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,8 @@ mod tests {
dead_code,
unreachable_code,
unused_variables,
clippy::diverging_sub_expression
clippy::diverging_sub_expression,
clippy::todo
)]
async fn should_compile() -> anyhow::Result<()> {
use sql_query_config::SqlQueryConfig;
Expand Down

0 comments on commit 8ddd002

Please sign in to comment.