diff --git a/ci/docker_install_php.sh b/ci/docker_install_php.sh
index aa3d3fad3c06001bec688b4fb83ffd82ee15b91f..b3fd4f0c21fb45e42de235bce701ed8245658026 100755
--- a/ci/docker_install_php.sh
+++ b/ci/docker_install_php.sh
@@ -5,11 +5,12 @@
 
 set -xe
 
-apt-get install -y libpq-dev libxml2-dev libxslt1-dev \
+apt-get install -y libpq-dev libxml2-dev libxslt1-dev libpng-dev \
 && docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql \
 && docker-php-ext-install pdo_pgsql pgsql xsl \
 && pecl install xdebug-2.6.0 \
-&& docker-php-ext-enable xdebug
+&& docker-php-ext-enable xdebug \
+&& docker-php-ext-install gd
 
 
 #&& docker-php-ext-install pdo_pgsql pgsql xsl zip \
diff --git a/test/unitTests/app/resource/SummarySheetControllerTest.php b/test/unitTests/app/resource/SummarySheetControllerTest.php
index 8537eb6ab6b5b2f886dddf00f0fb860a8e6a6135..0b147ba7e34811d7063a9632c0ab8298a0fdc523 100644
--- a/test/unitTests/app/resource/SummarySheetControllerTest.php
+++ b/test/unitTests/app/resource/SummarySheetControllerTest.php
@@ -31,7 +31,8 @@ class SummarySheetControllerTest extends TestCase
                 ['label' => 'Annotation(s)', 'unit' => 'notes'],
                 ['label' => 'Circuit de visa', 'unit' => 'visaWorkflow'],
                 ['label' => 'Circuit d\'avis', 'unit' => 'opinionWorkflow'],
-                ['label' => 'Commentaires', 'unit' => 'freeField']
+                ['label' => 'Commentaires', 'unit' => 'freeField'],
+                ['unit' => 'qrcode']
             ],
         ];
         $fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);