Copilot commented on code in PR #22503:
URL: https://github.com/apache/datafusion/pull/22503#discussion_r3298466758
##########
datafusion/physical-expr/src/expressions/in_list.rs:
##########
@@ -3821,3 +3880,163 @@ mod tests {
Ok(())
}
}
+
+#[cfg(all(test, feature = "proto"))]
+mod proto_tests {
+ use super::*;
Review Comment:
`proto_tests` is declared *after* the `#[cfg(test)] mod tests` module. This
will trigger Clippy's `items-after-test-module` lint (the file already has a
`tests` module and it must remain the final item). Consider moving
`proto_tests` inside the existing `tests` module (e.g., `#[cfg(feature =
"proto")] mod proto_tests { ... }`) or otherwise ensuring `mod tests` is the
last item in the file.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]