Skip to content
Snippets Groups Projects
Commit 7910a29c authored by Manuel Günther's avatar Manuel Günther
Browse files

Fixed typo in test data directory name

parent 7bd85a60
No related branches found
No related tags found
1 merge request!59Resolve "strange behaviour when retrieving objects from bob.bio.base filelist database query"
Pipeline #
Showing
with 3 additions and 2 deletions
......@@ -125,6 +125,7 @@ class FileListBioDatabase(ZTBioDatabase):
and the given sub-directories and file names (which default to useful values if not given)."""
super(FileListBioDatabase, self).__init__(
filelists_directory=filelists_directory,
name=name,
protocol=protocol,
original_directory=original_directory,
......
......@@ -24,7 +24,7 @@ import bob.io.base.test_utils
from bob.bio.base.database import FileListBioDatabase
example_dir = os.path.realpath(bob.io.base.test_utils.datafile('.', __name__, 'data/example_fielist'))
example_dir = os.path.realpath(bob.io.base.test_utils.datafile('.', __name__, 'data/example_filelist'))
def test_query():
......@@ -77,7 +77,7 @@ def test_query():
def test_query_protocol():
db = FileListBioDatabase(os.path.dirname(example_dir), 'test', protocol='example_fielist', use_dense_probe_file_list=False)
db = FileListBioDatabase(os.path.dirname(example_dir), 'test', protocol='example_filelist', use_dense_probe_file_list=False)
assert len(db.groups()) == 5 # 5 groups (dev, eval, world, optional_world_1, optional_world_2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment