Skip to content

Commit

Permalink
Add unit test coverage for remove_noise to address codecov automation
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 17, 2024
1 parent fab9c42 commit 4bdf55f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/unittests/skills/test_common_query_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def test_get_cq(self):
pass

def test_remove_noise(self):
# TODO
pass
noisy_match = "what is a computer"
normalized = "computer"
self.assertEqual(self.skill.remove_noise(noisy_match), normalized)

def test_calc_confidence(self):
generic_q = "what is coca cola"
Expand Down

0 comments on commit 4bdf55f

Please sign in to comment.