File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 2121
2222class TestPreprocessHtmlMergeCss (unittest .TestCase ):
2323 def test_preprocess_html_merge_css (self ):
24- src_path = 'tests/preprocess_cssless_data/multiset.html'
25- dst_path = 'tests/preprocess_cssless_data/multiset_out.html'
26- expected_path = 'tests/preprocess_cssless_data/multiset_expected.html'
24+ dir_path = os .path .dirname (__file__ )
25+ src_path = os .path .join (dir_path , 'preprocess_cssless_data/multiset.html' )
26+ dst_path = os .path .join (dir_path , 'preprocess_cssless_data/multiset_out.html' )
27+ expected_path = os .path .join (dir_path , 'preprocess_cssless_data/multiset_expected.html' )
2728
2829 preprocess_html_merge_css (src_path , dst_path )
30+
2931 with open (dst_path , 'r' ) as a_file :
3032 test = a_file .read ()
3133
You can’t perform that action at this time.
0 commit comments