From 3f94fd330802b2a97f079efc45c2477cd20bf542 Mon Sep 17 00:00:00 2001
From: Manuel Gunther <siebenkopf@googlemail.com>
Date: Thu, 18 Feb 2016 12:30:25 -0700
Subject: [PATCH] Corrected database test to work with new database environment

---
 bob/bio/face/test/test_databases.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/bio/face/test/test_databases.py b/bob/bio/face/test/test_databases.py
index 79cb3114..fbebbfbe 100644
--- a/bob/bio/face/test/test_databases.py
+++ b/bob/bio/face/test/test_databases.py
@@ -34,7 +34,7 @@ def _check_database(database, groups = ('dev',), protocol = None, training_depen
   if protocol: database.protocol = protocol
   assert len(database.all_files()) > 0
   assert len(database.training_files('train_extractor')) > 0
-  assert len(database.training_files('train_enroller', arrange_by_client = True)) > 0
+  assert len(database.arrange_by_client(database.training_files('train_enroller'))) > 0
 
   for group in groups:
     model_ids = database.model_ids(group)
-- 
GitLab