Added elements_names property to OBIDMS_column class

This commit is contained in:
Celine Mercier
2016-09-26 16:53:16 +02:00
parent 76f89717fe
commit a0bc45cc92
3 changed files with 10 additions and 9 deletions

View File

@ -93,7 +93,7 @@ def test_set_and_get(config, infos):
print_test(config, ">>> Set and get test")
col_name = random_column(infos)
col = infos['view'][col_name]
element_names = col.get_elements_names()
element_names = col.elements_names
data_type = col.get_data_type()
if data_type == "OBI_QUAL" :
print_test(config, "-")
@ -173,7 +173,7 @@ def random_col_type():
def fill_column(config, infos, col) :
data_type = col.get_data_type()
element_names = col.get_elements_names()
element_names = col.elements_names
if len(element_names) > 1 :
for i in range(random_int(config)) :