Skip to content

Commit 86bf62e

Browse files
committed
Running prettier
1 parent bf80441 commit 86bf62e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/practice/anagram/anagram.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ describe('Anagram', () => {
126126

127127
xtest('words other than themselves can be anagrams', () => {
128128
const expected = ['Silent'];
129-
const actual = findAnagrams('LISTEN', ['LISTEN', 'Silent',]);
129+
const actual = findAnagrams('LISTEN', ['LISTEN', 'Silent']);
130130
expect(areSetsEqual(new Set(expected), new Set(actual))).toEqual(true);
131131
});
132132

133133
xtest('handles case of greek letters', () => {
134-
const expected = ['ΒΓΑ', 'γβα',];
135-
const actual = findAnagrams('ΑΒΓ', ['ΒΓΑ', 'ΒΓΔ', 'γβα', 'αβγ',]);
134+
const expected = ['ΒΓΑ', 'γβα'];
135+
const actual = findAnagrams('ΑΒΓ', ['ΒΓΑ', 'ΒΓΔ', 'γβα', 'αβγ']);
136136
expect(areSetsEqual(new Set(expected), new Set(actual))).toEqual(true);
137137
});
138138

0 commit comments

Comments
 (0)