From fa256f03f2e4c513fcf26a62a928282f51924598 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20Pe=CC=81rez?= <jaime.perez@uninett.no>
Date: Tue, 4 Oct 2016 16:54:14 +0200
Subject: [PATCH] Fix build.

---
 tests/lib/SimpleSAML/Locale/LocalizationTest.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/lib/SimpleSAML/Locale/LocalizationTest.php b/tests/lib/SimpleSAML/Locale/LocalizationTest.php
index 729775002..df00ff0c0 100644
--- a/tests/lib/SimpleSAML/Locale/LocalizationTest.php
+++ b/tests/lib/SimpleSAML/Locale/LocalizationTest.php
@@ -15,7 +15,7 @@ class LocalizationTest extends \PHPUnit_Framework_TestCase
     {
         // The constructor should activate the default domain
         $c = \SimpleSAML_Configuration::loadFromArray(
-            array('language.i18n.backend' => 'twig.gettextgettext')
+            array('language.i18n.backend' => 'SimpleSAMLphp')
         );
         $l = new Localization($c);
         $this->assertTrue($l->isI18NBackendDefault());
@@ -29,7 +29,7 @@ class LocalizationTest extends \PHPUnit_Framework_TestCase
     public function testAddDomain()
     {
         $c = \SimpleSAML_Configuration::loadFromArray(
-            array('language.i18n.backend' => 'twig.gettextgettext')
+            array('language.i18n.backend' => 'gettext/gettext')
         );
         $l = new Localization($c);
         $newDomain = 'test';
@@ -47,7 +47,7 @@ class LocalizationTest extends \PHPUnit_Framework_TestCase
     {
         // Add the domain to activate
         $c = \SimpleSAML_Configuration::loadFromArray(
-            array('language.i18n.backend' => 'twig.gettextgettext')
+            array('language.i18n.backend' => 'gettext/gettext')
         );
         $l = new Localization($c);
         $newDomain = 'test';
@@ -67,7 +67,7 @@ class LocalizationTest extends \PHPUnit_Framework_TestCase
     {
         // Add the domain to reset from
         $c = \SimpleSAML_Configuration::loadFromArray(
-            array('language.i18n.backend' => 'twig.gettextgettext')
+            array('language.i18n.backend' => 'gettext/gettext')
         );
         $l = new Localization($c);
         $newDomain = 'ssp';
-- 
GitLab