tests: remove some redundant trailing commas

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-10-18 21:05:53 +02:00
parent c24919a9d7
commit 6df4b6a8ea

View File

@ -110,17 +110,14 @@ my $tests = [
{ {
params => [ { pending => { delete => 'memory', } }, 'memory' ], params => [ { pending => { delete => 'memory', } }, 'memory' ],
expect => { pending => {} }, expect => { pending => {} },
,
}, },
{ {
params => [ { pending => { delete => 'cpu,!memory', } }, 'memory' ], params => [ { pending => { delete => 'cpu,!memory', } }, 'memory' ],
expect => { pending => { delete => 'cpu' } }, expect => { pending => { delete => 'cpu' } },
,
}, },
{ {
params => [ { pending => { delete => 'cpu', } }, 'memory' ], params => [ { pending => { delete => 'cpu', } }, 'memory' ],
expect => { pending => { delete => 'cpu' } }, expect => { pending => { delete => 'cpu' } },
,
}, },
] ]
}, },