Skip to content

Commit 75c11f5

Browse files
committed
fix tests
1 parent bb22120 commit 75c11f5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
commit bb2212051495f6c33cafcbff06fdfc7f47974f6c
2+
Author: Alexeev Bronislav <[email protected]>
3+
Date: Wed Jul 2 14:12:41 2025 +0700
4+
5+
fix lint workflow
6+
17
commit 3897de7e1e4e04a62ed04869b94fb256bd9843ec
28
Author: Alexeev Bronislav <[email protected]>
39
Date: Wed Jul 2 14:09:53 2025 +0700

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ mod cli_tests {
5757

5858
#[test]
5959
fn test_cli_commands() {
60-
let output = Command::new("./target/debug/rtfm")
60+
let output = Command::new("./target/release/rtfm")
6161
.arg("-V")
6262
.output()
6363
.expect("Failed to execute command");
6464

6565
assert!(String::from_utf8_lossy(&output.stdout).contains("rtfm 0.1.0"));
6666

67-
let output = Command::new("./target/debug/rtfm")
67+
let output = Command::new("./target/release/rtfm")
6868
.arg("--help")
6969
.output()
7070
.expect("Failed to execute command");

0 commit comments

Comments
 (0)