From 7501cb67a5d628cc3d79a4578a65f7e55e1d126b Mon Sep 17 00:00:00 2001 From: frh <4987254+frh@users.noreply.github.com> Date: Thu, 21 May 2020 18:37:40 +0200 Subject: [PATCH] Fix missing comma --- spec/fixtures/ip6tables/conversion_hash.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/fixtures/ip6tables/conversion_hash.rb b/spec/fixtures/ip6tables/conversion_hash.rb index 294019c..2737c4d 100644 --- a/spec/fixtures/ip6tables/conversion_hash.rb +++ b/spec/fixtures/ip6tables/conversion_hash.rb @@ -123,6 +123,6 @@ HASH_TO_ARGS6 = { provider: 'ip6tables', table: 'filter', }, - args: ['-t', :filter, '-p', :tcp, '-J', 'NFLOG', '--nflog-group', '1', '--nflog-prefix', 'myprefix' '-m', 'comment', '--comment', '100 nflog'], + args: ['-t', :filter, '-p', :tcp, '-J', 'NFLOG', '--nflog-group', '1', '--nflog-prefix', 'myprefix', '-m', 'comment', '--comment', '100 nflog'], }, }.freeze -- 2.45.2