about summary refs log tree commit diff
path: root/tests/ui/path_ends_with_ext.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-02-12 23:44:38 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-02-15 13:38:42 +0100
commit1f94d55a183c493ae2ca2754d9485f89e4ac76ae (patch)
tree032642da69218d90b407923042fe00e6d4ada53b /tests/ui/path_ends_with_ext.rs
parent8a2dae63c3737ed9623035d55ed5e0e90e2942ab (diff)
downloadrust-1f94d55a183c493ae2ca2754d9485f89e4ac76ae.tar.gz
rust-1f94d55a183c493ae2ca2754d9485f89e4ac76ae.zip
Fix new tests updates
Diffstat (limited to 'tests/ui/path_ends_with_ext.rs')
-rw-r--r--tests/ui/path_ends_with_ext.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/ui/path_ends_with_ext.rs b/tests/ui/path_ends_with_ext.rs
index e20620e983d..00d7ede8ef9 100644
--- a/tests/ui/path_ends_with_ext.rs
+++ b/tests/ui/path_ends_with_ext.rs
@@ -11,7 +11,6 @@ fn test(path: &Path) {
     path.ends_with(".md");
     //~^ path_ends_with_ext
 
-
     // some "extensions" are allowed by default
     path.ends_with(".git");
 
@@ -32,7 +31,6 @@ fn test(path: &Path) {
 fn under_msv(path: &Path) -> bool {
     path.ends_with(".md")
     //~^ path_ends_with_ext
-
 }
 
 fn main() {}