From 6df4b6a8ea2897fd7574f74c2e46c1b6fb943527 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 18 Oct 2019 21:05:53 +0200 Subject: [PATCH] tests: remove some redundant trailing commas Signed-off-by: Thomas Lamprecht --- tests/abstract-config-tests.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/abstract-config-tests.pl b/tests/abstract-config-tests.pl index 086edcb..db18c57 100755 --- a/tests/abstract-config-tests.pl +++ b/tests/abstract-config-tests.pl @@ -110,17 +110,14 @@ my $tests = [ { params => [ { pending => { delete => 'memory', } }, 'memory' ], expect => { pending => {} }, -, }, { params => [ { pending => { delete => 'cpu,!memory', } }, 'memory' ], expect => { pending => { delete => 'cpu' } }, -, }, { params => [ { pending => { delete => 'cpu', } }, 'memory' ], expect => { pending => { delete => 'cpu' } }, -, }, ] },