1
Fork 0
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:
Yuri Astrakhan 2025-04-08 00:33:58 -04:00
parent b7bf8c9467
commit 3dc771924c
17 changed files with 86 additions and 86 deletions

View file

@ -4155,7 +4155,7 @@ fn test_ls_dangling_symlinks() {
fn test_ls_context1() {
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;
}
@ -4171,7 +4171,7 @@ fn test_ls_context1() {
fn test_ls_context2() {
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!());
@ -4188,7 +4188,7 @@ fn test_ls_context2() {
fn test_ls_context_format() {
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!());