Skip to content

Commit 3ba8c90

Browse files
committed
revert: patchy-bin as the package name
1 parent bbf73ce commit 3ba8c90

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "patchy"
2+
name = "patchy-bin"
33
version = "1.3.0"
44
edition = "2024"
55
license = "MIT"

tests/run.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn test_helix_remove_tab() {
5555
&["helix-remove-tab"],
5656
);
5757

58-
Command::cargo_bin(env!("CARGO_PKG_NAME"))
58+
Command::cargo_bin("patchy")
5959
.unwrap()
6060
.args(["run", "--yes"])
6161
.current_dir(tmp.as_ref())
@@ -81,7 +81,7 @@ fn test_conflicting_patches() {
8181
],
8282
);
8383

84-
std::process::Command::cargo_bin(env!("CARGO_PKG_NAME"))
84+
std::process::Command::cargo_bin("patchy")
8585
.unwrap()
8686
.args(["run", "--yes"])
8787
.current_dir(tmp.path())
@@ -109,7 +109,7 @@ fn test_sequential_patches() {
109109
],
110110
);
111111

112-
std::process::Command::cargo_bin(env!("CARGO_PKG_NAME"))
112+
std::process::Command::cargo_bin("patchy")
113113
.unwrap()
114114
.args(["run", "--yes"])
115115
.current_dir(tmp.path())
@@ -137,7 +137,7 @@ fn test_nonexistent_patch() {
137137
&["foo"],
138138
);
139139

140-
std::process::Command::cargo_bin(env!("CARGO_PKG_NAME"))
140+
std::process::Command::cargo_bin("patchy")
141141
.unwrap()
142142
.args(["run", "--yes"])
143143
.current_dir(tmp.path())

0 commit comments

Comments
 (0)