about summary refs log tree commit diff
path: root/tests/ui/path_ends_with_ext.rs
diff options
context:
space:
mode:
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() {}