Skip to content

Commit

Permalink
clean up debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
hanars committed Feb 14, 2024
1 parent 2ee7b3e commit 9abdf47
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions hail_search/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,6 @@ async def _assert_expected_search(self, results, gene_counts=None, **search_kwar
self.assertSetEqual(set(resp_json.keys()), {'results', 'total'})
self.assertEqual(resp_json['total'], len(results))
for i, result in enumerate(resp_json['results']):
if result != results[i]:
diff_0 = {k for k, v in results[i][0].items() if v != result[0][k]}
diff_1 = {k for k, v in results[i][1].items() if v != result[1][k]}
import pdb; pdb.set_trace()
self.assertEqual(result, results[i])

if gene_counts:
Expand Down

0 comments on commit 9abdf47

Please sign in to comment.