Skip to content

Commit

Permalink
Update test_protein_translation.c (#1039)
Browse files Browse the repository at this point in the history
Small typo in test name
  • Loading branch information
mattshu authored Jan 18, 2025
1 parent 74d024f commit d3b0e9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ test_translation_stops_if_stop_codon_in_middle_of_six_codon_sequence(void)
}

static void
test_seuence_of_two_non_stop_codons_does_not_translate_to_a_stop_codon(void)
test_sequence_of_two_non_stop_codons_does_not_translate_to_a_stop_codon(void)
{
TEST_IGNORE();
proteins_t expected = {
Expand Down Expand Up @@ -420,7 +420,7 @@ int main(void)
RUN_TEST(test_translation_stops_if_stop_codon_at_end_of_three_codon_sequence);
RUN_TEST(test_translation_stops_if_stop_codon_in_middle_of_three_codon_sequence);
RUN_TEST(test_translation_stops_if_stop_codon_in_middle_of_six_codon_sequence);
RUN_TEST(test_seuence_of_two_non_stop_codons_does_not_translate_to_a_stop_codon);
RUN_TEST(test_sequence_of_two_non_stop_codons_does_not_translate_to_a_stop_codon);
RUN_TEST(test_non_existing_codon_cant_translate);
RUN_TEST(test_unknown_amino_acids_not_part_of_a_codon_cant_translate);
RUN_TEST(test_invalid_codon_cant_translate);
Expand Down

0 comments on commit d3b0e9e

Please sign in to comment.