Skip to content

Commit 88505fb

Browse files
author
stephanie
committed
cleanup result tests
2 parents dc2a3be + 76b0dcd commit 88505fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

odm2api/ODM2/services/readService.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def getProcessingLevels(self, ids=None, codes=None):
316316
* Pass a list of ProcessingLevelCode - returns a single processingLevel object
317317
"""
318318
q = self._session.query(ProcessingLevels)
319-
if ids: q = q.filter(ProcessingLevels.ProcessingLevels.in_(ids))
319+
if ids: q = q.filter(ProcessingLevels.ProcessingLevelsID.in_(ids))
320320
if codes: q = q.filter(ProcessingLevels.ProcessingLevelCode.in_(codes))
321321

322322
try:

0 commit comments

Comments
 (0)