Skip to content

Commit

Permalink
updated test_config
Browse files Browse the repository at this point in the history
  • Loading branch information
ntalluri committed Aug 20, 2024
1 parent bbac744 commit cfd3c03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_test_config():
}
},
"datasets": [{"label":"alg1"}, {"label":"alg2"}],
"gold_standard": [{"label":"gs1"}],
"gold_standard": [{"label":"gs1", "dataset_labels":[]}],
"algorithms": [{"params": ["param2", "param2"]}],
"analysis": {
"summary": {
Expand Down Expand Up @@ -118,6 +118,7 @@ def test_error_dataset_label(self):

def test_correct_dataset_label(self):
test_config = get_test_config()
print(test_config)
correct_test_dicts = [{"label":"test"}, {"label":"123"}, {"label":"test123"}, {"label":"123test"}, {"label":"_"}, {"label":"test_test"}, {"label":"_test"}, {"label":"test_"}]

for test_dict in correct_test_dicts:
Expand Down

0 comments on commit cfd3c03

Please sign in to comment.