mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
basenc+tests: remove unused spell-checker:disable
This commit is contained in:
parent
db61684bc0
commit
b39b405826
1 changed files with 4 additions and 4 deletions
|
@ -41,14 +41,14 @@ fn test_base64() {
|
|||
.pipe_in("to>be?")
|
||||
.succeeds()
|
||||
.no_stderr()
|
||||
.stdout_only("dG8+YmU/\n"); // spell-checker:disable-line
|
||||
.stdout_only("dG8+YmU/\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_base64_decode() {
|
||||
new_ucmd!()
|
||||
.args(&["--base64", "-d"])
|
||||
.pipe_in("dG8+YmU/") // spell-checker:disable-line
|
||||
.pipe_in("dG8+YmU/")
|
||||
.succeeds()
|
||||
.no_stderr()
|
||||
.stdout_only("to>be?");
|
||||
|
@ -61,14 +61,14 @@ fn test_base64url() {
|
|||
.pipe_in("to>be?")
|
||||
.succeeds()
|
||||
.no_stderr()
|
||||
.stdout_only("dG8-YmU_\n"); // spell-checker:disable-line
|
||||
.stdout_only("dG8-YmU_\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_base64url_decode() {
|
||||
new_ucmd!()
|
||||
.args(&["--base64url", "-d"])
|
||||
.pipe_in("dG8-YmU_") // spell-checker:disable-line
|
||||
.pipe_in("dG8-YmU_")
|
||||
.succeeds()
|
||||
.no_stderr()
|
||||
.stdout_only("to>be?");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue