obi test: fixed bug introduced in previous version

This commit is contained in:
Celine Mercier
2021-03-11 11:36:52 +13:00
parent 41fbae7b6c
commit cba78111c9
2 changed files with 2 additions and 2 deletions

View File

@ -301,8 +301,8 @@ def fill_column(config, infos, col) :
def create_random_column(config, infos) :
alias = random.choice([b'', random_unique_name(infos)])
tuples = random.choice([True, False])
dict_column = False
if not tuples :
dict_column = random.choice([True, False])
nb_elements_per_line=random.randint(1, config['test']['maxelts'])
if nb_elements_per_line > 1:
dict_column = True

View File

@ -1,5 +1,5 @@
major = 3
minor = 0
serial= '0b43'
serial= '0b44'
version ="%d.%d.%s" % (major,minor,serial)