@@ -165,7 +165,7 @@ def test_find_extracts_by_filename_custom_status(self):
165165 extract .change_extract_status ("blarg" )
166166
167167 expected_result = [
168- str (Path ("/home/test/extract_dir/test_extract_filename2.csv" ). absolute () )
168+ str (Path ("/home/test/extract_dir/test_extract_filename2.csv" ))
169169 ]
170170
171171 given_result = self .process_tracker .find_extracts_by_filename (
@@ -193,7 +193,7 @@ def test_find_extracts_by_filename_full(self):
193193 session .commit ()
194194
195195 expected_result = [
196- str (Path ("/home/test/extract_dir/test_extract_filename2.csv" ). absolute () )
196+ str (Path ("/home/test/extract_dir/test_extract_filename2.csv" ))
197197 ]
198198
199199 given_result = self .process_tracker .find_extracts_by_filename (
@@ -233,8 +233,8 @@ def test_find_extracts_by_filename_partial(self):
233233 session .commit ()
234234
235235 expected_result = [
236- str (Path ("/home/test/extract_dir/test_extract_filename3-1.csv" ). absolute () ),
237- str (Path ("/home/test/extract_dir/test_extract_filename3-2.csv" ). absolute () ),
236+ str (Path ("/home/test/extract_dir/test_extract_filename3-1.csv" )),
237+ str (Path ("/home/test/extract_dir/test_extract_filename3-2.csv" )),
238238 ]
239239
240240 given_result = self .process_tracker .find_extracts_by_filename (
@@ -274,8 +274,8 @@ def test_find_extracts_by_filename_partial_not_descending(self):
274274 session .commit ()
275275
276276 expected_result = [
277- str (Path ("/home/test/extract_dir/test_extract_filename3-2.csv" ). absolute () ),
278- str (Path ("/home/test/extract_dir/test_extract_filename3-1.csv" ). absolute () ),
277+ str (Path ("/home/test/extract_dir/test_extract_filename3-2.csv" )),
278+ str (Path ("/home/test/extract_dir/test_extract_filename3-1.csv" )),
279279 ]
280280
281281 given_result = self .process_tracker .find_extracts_by_filename (
@@ -310,8 +310,8 @@ def test_find_extracts_by_location_name_custom_status(self):
310310 extract2 .change_extract_status ("blarg" )
311311
312312 expected_result = [
313- str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" ). absolute () ),
314- str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" ). absolute () ),
313+ str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" )),
314+ str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" )),
315315 ]
316316
317317 given_result = self .process_tracker .find_extracts_by_location (
@@ -351,8 +351,8 @@ def test_find_extracts_by_location_name(self):
351351 session .commit ()
352352
353353 expected_result = [
354- str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" ). absolute () ),
355- str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" ). absolute () ),
354+ str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" )),
355+ str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" )),
356356 ]
357357
358358 given_result = self .process_tracker .find_extracts_by_location (
@@ -392,8 +392,8 @@ def test_find_extracts_by_location_not_descending(self):
392392 session .commit ()
393393
394394 expected_result = [
395- str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" ). absolute () ),
396- str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" ). absolute () ),
395+ str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" )),
396+ str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" )),
397397 ]
398398
399399 given_result = self .process_tracker .find_extracts_by_location (
@@ -429,8 +429,8 @@ def test_find_extracts_by_location_path_custom_status(self):
429429 extract2 .change_extract_status ("blarg" )
430430
431431 expected_result = [
432- str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" ). absolute () ),
433- str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" ). absolute () ),
432+ str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" )),
433+ str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" )),
434434 ]
435435
436436 given_result = self .process_tracker .find_extracts_by_location (
@@ -470,8 +470,8 @@ def test_find_extracts_by_location_path(self):
470470 session .commit ()
471471
472472 expected_result = [
473- str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" ). absolute () ),
474- str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" ). absolute () ),
473+ str (Path ("/home/test/extract_dir/test_extract_filename4-1.csv" )),
474+ str (Path ("/home/test/extract_dir/test_extract_filename4-2.csv" )),
475475 ]
476476
477477 given_result = self .process_tracker .find_extracts_by_location (
@@ -520,8 +520,8 @@ def test_find_extracts_by_process_custom_status(self):
520520 extract2 .change_extract_status ("blarg" )
521521
522522 expected_result = [
523- str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" ). absolute () ),
524- str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" ). absolute () ),
523+ str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" )),
524+ str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" )),
525525 ]
526526
527527 given_result = self .process_tracker .find_extracts_by_process (
@@ -560,8 +560,8 @@ def test_find_extracts_by_process(self):
560560 session .commit ()
561561
562562 expected_result = [
563- str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" ). absolute () ),
564- str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" ). absolute () ),
563+ str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" )),
564+ str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" )),
565565 ]
566566
567567 given_result = self .process_tracker .find_extracts_by_process (
@@ -606,8 +606,8 @@ def test_find_extracts_by_process_not_descending(self):
606606 session .commit ()
607607
608608 expected_result = [
609- str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" ). absolute () ),
610- str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" ). absolute () ),
609+ str (Path ("/home/test/extract_dir/test_extract_filename5-2.csv" )),
610+ str (Path ("/home/test/extract_dir/test_extract_filename5-1.csv" )),
611611 ]
612612
613613 given_result = self .process_tracker .find_extracts_by_process (
0 commit comments