Skip to content

Commit fd1dd4e

Browse files
committed
Run format.mjs
1 parent d19539e commit fd1dd4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/protein-translation/protein-translation.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('ProteinTranslation', () => {
1010
xtest('Methionine RNA sequence', () => {
1111
expect(translate('AUG')).toEqual(['Methionine']);
1212
});
13-
13+
1414
xtest('Phenylalanine RNA sequence 1', () => {
1515
expect(translate('UUU')).toEqual(['Phenylalanine']);
1616
});
@@ -65,7 +65,7 @@ describe('ProteinTranslation', () => {
6565
xtest('STOP codon RNA sequence 3', () => {
6666
expect(translate('UGA')).toEqual([]);
6767
});
68-
});
68+
});
6969

7070
describe('Multiple codons', () => {
7171
xtest('Sequence of two protein codons translates into proteins', () => {

0 commit comments

Comments
 (0)