From 02031fc10e43d06710a85b31acbb956e6c3b7560 Mon Sep 17 00:00:00 2001
From: Tim van Dijen <tvdijen@gmail.com>
Date: Thu, 18 Oct 2018 15:09:10 +0200
Subject: [PATCH] Remove excess comma

---
 tests/modules/consent/lib/Auth/Process/ConsentTest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/modules/consent/lib/Auth/Process/ConsentTest.php b/tests/modules/consent/lib/Auth/Process/ConsentTest.php
index 1f0b07eab..8916ed440 100644
--- a/tests/modules/consent/lib/Auth/Process/ConsentTest.php
+++ b/tests/modules/consent/lib/Auth/Process/ConsentTest.php
@@ -214,7 +214,7 @@ class ConsentTest extends TestCase
             $config['showNoConsentAboutService']
         );
 
-        $deprecated = $reflection->newInstance(['noconsentattributes' => $config['attributes.exclude'],], null);
+        $deprecated = $reflection->newInstance(['noconsentattributes' => $config['attributes.exclude']], null);
         $this->assertEquals($instanceVars['noconsentattributes']->getValue($deprecated), $config['attributes.exclude']);
     }
 }
-- 
GitLab