Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stscoundrel committed Nov 1, 2020
1 parent 63c7a13 commit f6d2877
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/cleasby-vigfusson.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ describe('Dictionary: with formatting', () => {
let hasMalformatted = false

dictionary.forEach((entry) => {
entry.definitions.forEach(definition => {
if(malformatted.includes(definition)) {
entry.definitions.forEach((definition) => {
if (malformatted.includes(definition)) {
hasMalformatted = true
}
})
Expand Down Expand Up @@ -97,8 +97,8 @@ describe('Dictionary: without formatting', () => {
let hasMalformatted = false

dictionary.forEach((entry) => {
entry.definitions.forEach(definition => {
if(malformatted.includes(definition)) {
entry.definitions.forEach((definition) => {
if (malformatted.includes(definition)) {
hasMalformatted = true
}
})
Expand Down

0 comments on commit f6d2877

Please sign in to comment.