Skip to content

Commit dd62811

Browse files
committed
process_tracker_python-1 Add support for other relational databases
🐛 travis CI configuration Trying to debug the database build matrix for .travis.yml Working on #1
1 parent 37f8230 commit dd62811

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test_process_tracker.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ def test_find_ready_extracts_by_filename_full(self):
134134

135135
def test_find_ready_extracts_by_filename_partial(self):
136136
"""
137-
Testing that for the given partial filename, find the extracts, provided they are in 'ready' state. Should return
138-
them in ascending order by registration datetime.
137+
Testing that for the given partial filename, find the extracts, provided they are in 'ready' state.
139138
:return:
140139
"""
141140
extract = ExtractTracker(process_run=self.process_tracker
@@ -162,7 +161,7 @@ def test_find_ready_extracts_by_filename_partial(self):
162161

163162
given_result = self.process_tracker.find_ready_extracts_by_filename('test_extract_filename')
164163

165-
self.assertEqual(expected_result, given_result)
164+
self.assertListEqual(expected_result, given_result)
166165

167166
def test_find_ready_extracts_by_filename_partial_not_descending(self):
168167
"""

0 commit comments

Comments
 (0)