Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
toasted-nutbread committed Jan 27, 2024
1 parent 3ebc724 commit 8cec32a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/deinflection-cycles.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ describe('Deinflection data', () => {

/** @type {RuleNode[]} */
const ruleNodes = [];
for (const [groupName, rules] of Object.entries(deinflectionReasons)) {
for (const rule of rules) {
for (const [groupName, reasonInfo] of Object.entries(deinflectionReasons)) {
for (const rule of reasonInfo) {
ruleNodes.push(new RuleNode(groupName, rule));
}
}
Expand Down

0 comments on commit 8cec32a

Please sign in to comment.