aboutsummaryrefslogtreecommitdiff
path: root/b3sum/tests
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-05-13 17:47:29 -0400
committerJack O'Connor <[email protected]>2020-05-13 17:47:59 -0400
commit5030c0f1c345b8ccf40ecd7cf540d1bce562895c (patch)
tree37fda4a042325a5edd68d0d58ef7f47b062fa09f /b3sum/tests
parentc6a99dbb239522b1f99950faefc2b072ee3b1a53 (diff)
switch from assert_cmd to CARGO_BIN_EXE_*
Diffstat (limited to 'b3sum/tests')
-rw-r--r--b3sum/tests/cli_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/b3sum/tests/cli_tests.rs b/b3sum/tests/cli_tests.rs
index fd1824e..fd01a70 100644
--- a/b3sum/tests/cli_tests.rs
+++ b/b3sum/tests/cli_tests.rs
@@ -5,7 +5,7 @@ use std::io::prelude::*;
use std::path::PathBuf;
pub fn b3sum_exe() -> PathBuf {
- assert_cmd::cargo::cargo_bin("b3sum")
+ env!("CARGO_BIN_EXE_b3sum").into()
}
#[test]