mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
printf+tests: remove unused spell-checker:disable
This commit is contained in:
parent
bebddc6ad4
commit
289346a4ba
1 changed files with 2 additions and 5 deletions
|
@ -521,10 +521,7 @@ fn sub_any_specifiers_after_period() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn unspecified_left_justify_is_1_width() {
|
fn unspecified_left_justify_is_1_width() {
|
||||||
new_ucmd!()
|
new_ucmd!().args(&["%-o"]).succeeds().stdout_only("0");
|
||||||
.args(&["%-o"]) //spell-checker:disable-line
|
|
||||||
.succeeds()
|
|
||||||
.stdout_only("0");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -538,7 +535,7 @@ fn sub_any_specifiers_after_second_param() {
|
||||||
#[test]
|
#[test]
|
||||||
fn stop_after_additional_escape() {
|
fn stop_after_additional_escape() {
|
||||||
new_ucmd!()
|
new_ucmd!()
|
||||||
.args(&["A%sC\\cD%sF", "B", "E"]) //spell-checker:disable-line
|
.args(&["A%sC\\cD%sF", "B", "E"])
|
||||||
.succeeds()
|
.succeeds()
|
||||||
.stdout_only("ABC");
|
.stdout_only("ABC");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue