Skip to content

Commit 60affb4

Browse files
committed
running format.mjs
1 parent 079671f commit 60affb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/practice/word-count/word-count.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ describe('countWords', () => {
8484
getting: 1,
8585
it: 1,
8686
};
87-
expect(countWords("'First: don't laugh. Then: don't cry. You're getting it.'")).toEqual(
88-
expectedCounts,
89-
);
87+
expect(
88+
countWords("'First: don't laugh. Then: don't cry. You're getting it.'"),
89+
).toEqual(expectedCounts);
9090
});
9191

9292
xtest('with quotations', () => {

0 commit comments

Comments
 (0)