Skip to content

Commit

Permalink
test(discovery): rm debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Apr 11, 2024
1 parent 0911534 commit b9566b0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions chord_metadata_service/discovery/tests/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,12 @@ def setUp(self):
self.individual_1 = pa_m.Individual.objects.create(**ph_c.VALID_INDIVIDUAL_1)

async def test_categorical_stats_lcf(self):
import sys
res = await get_categorical_stats(self.f_sex, low_counts_censored=False)
print("AAAAA", file=sys.stderr)
self.assertListEqual(res, [{"label": "MALE", "value": 1}, {"label": "missing", "value": 0}])

@override_settings(CONFIG_PUBLIC=CONFIG_PUBLIC_TEST)
async def test_categorical_stats_lct(self):
import sys
res = await get_categorical_stats(self.f_sex, low_counts_censored=True)
print("BBBBB", file=sys.stderr)
self.assertListEqual(res, [{"label": "missing", "value": 0}])


Expand Down

0 comments on commit b9566b0

Please sign in to comment.