Update test_database.py

This commit is contained in:
cclauss 2017-07-05 10:13:42 +02:00 committed by GitHub
parent d144d8a219
commit 7337030790

View file

@ -7,11 +7,11 @@ from test_utils import region_dict, get_region, make_extra_counts, MAX_ID
def test_first_database():
print('{} items in first database.'.format(Database()))
print('{} items in first database.'.format(len(Database())))
def test_second_database():
print('{} items in second database.'.format(Database()))
print('{} items in second database.'.format(len(Database())))
def test_len():