about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unit_cmp.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-03-01 22:22:06 +0000
committerbors <bors@rust-lang.org>2025-03-01 22:22:06 +0000
commit351686bcfd18dd0f652aba69a806bfa68c57234d (patch)
tree7d20ba474a6283e76572bb8c59b5e61347120420 /src/tools/clippy/tests/ui/unit_cmp.rs
parent8c392966a013fd8a09e6b78b3c8d6e442bc278e1 (diff)
parent7bfea666528281d627fc01b3858e3742fafa0d7d (diff)
Auto merge of #137752 - flip1995:clippy-subtree-update, r=Manishearth
Clippy subtree update

? `@Manishearth`

Cargo.lock change because of Clippy version bump and rustc_tool_utils new release.

Fixes #137640

Would be nice, if we could this merged before nightly is being build, so that this ICE is fixed tomorrow.
Diffstat (limited to 'src/tools/clippy/tests/ui/unit_cmp.rs')
-rw-r--r--src/tools/clippy/tests/ui/unit_cmp.rs15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/tools/clippy/tests/ui/unit_cmp.rs b/src/tools/clippy/tests/ui/unit_cmp.rs
index cea89026da6..93f5b87c3d2 100644
--- a/src/tools/clippy/tests/ui/unit_cmp.rs
+++ b/src/tools/clippy/tests/ui/unit_cmp.rs
@@ -15,22 +15,23 @@ fn main() {
 
     // this warns
     if {
-        //~^ ERROR: ==-comparison of unit values detected. This will always be true
-        //~| NOTE: `-D clippy::unit-cmp` implied by `-D warnings`
+        //~^ unit_cmp
+
         true;
     } == {
         false;
     } {}
 
     if {
-        //~^ ERROR: >-comparison of unit values detected. This will always be false
+        //~^ unit_cmp
+
         true;
     } > {
         false;
     } {}
 
     assert_eq!(
-        //~^ ERROR: `assert_eq` of unit values detected. This will always succeed
+        //~^ unit_cmp
         {
             true;
         },
@@ -39,7 +40,7 @@ fn main() {
         }
     );
     debug_assert_eq!(
-        //~^ ERROR: `debug_assert_eq` of unit values detected. This will always succeed
+        //~^ unit_cmp
         {
             true;
         },
@@ -49,7 +50,7 @@ fn main() {
     );
 
     assert_ne!(
-        //~^ ERROR: `assert_ne` of unit values detected. This will always fail
+        //~^ unit_cmp
         {
             true;
         },
@@ -58,7 +59,7 @@ fn main() {
         }
     );
     debug_assert_ne!(
-        //~^ ERROR: `debug_assert_ne` of unit values detected. This will always fail
+        //~^ unit_cmp
         {
             true;
         },