diff -r 31bf3254be69 -r e0b7277e5394 cubicweb/dataimport/test/test_massive_store.py --- a/cubicweb/dataimport/test/test_massive_store.py Mon Feb 01 17:31:35 2016 +0100 +++ b/cubicweb/dataimport/test/test_massive_store.py Thu Jan 28 11:32:12 2016 +0100 @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# copyright 2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +# copyright 2013-2016 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr -- mailto:contact@logilab.fr # # This program is free software: you can redistribute it and/or modify it under @@ -158,14 +158,11 @@ @staticmethod def get_db_descr(cnx): - pg_schema = ( - cnx.repo.config.system_source_config.get('db-namespace') - or 'public') - pgh = PGHelper(cnx, pg_schema) + pgh = PGHelper(cnx) all_tables = cnx.system_sql(''' SELECT table_name FROM information_schema.tables -where table_schema = %(s)s''', {'s': pg_schema}).fetchall() +where table_schema = %(s)s''', {'s': pgh.pg_schema}).fetchall() all_tables_descr = {} for tablename, in all_tables: all_tables_descr[tablename] = set(pgh.index_list(tablename)).union(