Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1583 | fixing search tests for fuzzy search…
Browse files Browse the repository at this point in the history
… on ID
  • Loading branch information
snyaggarwal committed Jul 31, 2023
1 parent d197ea4 commit 284e66d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/integration_tests/tests_concepts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,7 @@ def test_search(self): # pylint: disable=too-many-statements
self.assertEqual(len(response.data), 1)
self.assertEqual(response.data[0]['id'], 'MyConcept1')

response = self.client.get('/concepts/?q=MyConcept&conceptClass=classB')
response = self.client.get('/concepts/?q=MyConcept1&conceptClass=classB')
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data), 0)

Expand Down

0 comments on commit 284e66d

Please sign in to comment.