mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
chore: cleanup trailing commas before parens
Deleted commas in cases like `foo,)` -- mostly in macros
This commit is contained in:
parent
b7bf8c9467
commit
3dc771924c
17 changed files with 86 additions and 86 deletions
|
@ -383,7 +383,7 @@ fn test_id_zero() {
|
|||
fn test_id_context() {
|
||||
use selinux::{self, KernelSupport};
|
||||
if selinux::kernel_support() == KernelSupport::Unsupported {
|
||||
println!("test skipped: Kernel has no support for SElinux context",);
|
||||
println!("test skipped: Kernel has no support for SElinux context");
|
||||
return;
|
||||
}
|
||||
let ts = TestScenario::new(util_name!());
|
||||
|
@ -458,7 +458,7 @@ fn test_id_no_specified_user_posixly() {
|
|||
{
|
||||
use selinux::{self, KernelSupport};
|
||||
if selinux::kernel_support() == KernelSupport::Unsupported {
|
||||
println!("test skipped: Kernel has no support for SElinux context",);
|
||||
println!("test skipped: Kernel has no support for SElinux context");
|
||||
} else {
|
||||
let result = ts.ucmd().succeeds();
|
||||
assert!(result.stdout_str().contains("context="));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue