Skip to content

Commit

Permalink
kmer_space_tests: refactor: rename a test method
Browse files Browse the repository at this point in the history
  • Loading branch information
slowikj committed Jan 18, 2020
1 parent ef49b48 commit 7617694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kmer_space_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_initialization(self):
kmer_space = KMerSpace(k=4, alphabet=common_alphabet)
self.assertEqual(len(kmer_space.get_sorted_by_kmer()), 136)

def test_increase_1_a_key_that_is_explicitly_in_dict(self):
def test_adding_kmer(self):
kmer_space = KMerSpace(k=4, alphabet=common_alphabet)
kmer = "ACTG"
kmer_space.increase(kmer)
Expand Down

0 comments on commit 7617694

Please sign in to comment.