Skip to content

Commit 9186338

Browse files
committed
Fix stupid windows issue.
1 parent 11b668d commit 9186338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_input.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ def test_config_parsing_relative_input_path():
11411141
class_map, custom_learner_path, learning_curve_cv_folds_list,
11421142
learning_curve_train_sizes, output_metrics) = _parse_config_file(config_path)
11431143

1144-
eq_(normpath(train_path), (join(_my_dir, 'train')))
1144+
eq_(normpath(train_path), normpath(join(_my_dir, 'train')))
11451145

11461146

11471147
def test_config_parsing_relative_input_paths():

0 commit comments

Comments
 (0)