summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2016-08-08 15:07:50 +0300
committerCyril Plisko <cyril.plisko@mountall.com>2016-08-08 15:18:25 +0300
commit6f17568b0bf6ad7b30aa0a67c816991ebdbe7ab4 (patch)
tree8f7dc66dd42b4d97eeae632b586423e50bbc08a2 /src
parent8d3d44326f2d32270d9513617cc67eca92d5c591 (diff)
rustfmt
Diffstat (limited to 'src')
-rw-r--r--src/helper.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/helper.rs b/src/helper.rs
index d13e654..23d2dbe 100644
--- a/src/helper.rs
+++ b/src/helper.rs
@@ -60,11 +60,11 @@ mod tests {
use super::{find_pager, which};
use std::ffi::OsString;
-#[cfg(target_os = "linux")]
-const MORE: &'static str = "/bin/more";
+ #[cfg(target_os = "linux")]
+ const MORE: &'static str = "/bin/more";
-#[cfg(target_os = "macos")]
-const MORE: &'static str = "/usr/bin/more";
+ #[cfg(target_os = "macos")]
+ const MORE: &'static str = "/usr/bin/more";
#[test]
fn more_found_in_path() {