Skip to content

Commit c16e0a0

Browse files
committed
process_tracker_python-30 Extract Lookups should return Extract objects
All the extract file finders now return extract objects so they can be modified as they are used. A helper method was also added that provides the full filename of a given extract (called full_filepath). Also realized that I missed adding string representations of a bunch of the data models.
1 parent 499dcdf commit c16e0a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_process_tracker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ def test_register_new_process_run_exception(self):
431431
with self.assertRaises(Exception) as context:
432432
# Running registration a second time to mimic job being run twice
433433
self.process_tracker.register_new_process_run()
434-
435-
return self.assertTrue('Process Testing Process Tracking Initialization '
434+
print(context.exception)
435+
return self.assertTrue('The process Testing Process Tracking Initialization '
436436
'is currently running.' in str(context.exception))
437437

438438
def test_register_new_process_run_with_previous_run(self):

0 commit comments

Comments
 (0)