Skip to content

Commit ffea60e

Browse files
CopilotSoonIter
andcommitted
test: clean up rstest migration validation
Co-authored-by: SoonIter <79413249+SoonIter@users.noreply.github.com>
1 parent 2024bec commit ffea60e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/normalize.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ describe('normalizeCLR', () => {
166166
},
167167
];
168168

169-
testCases.forEach(({ input, expected }) => {
169+
for (const { input, expected } of testCases) {
170170
expect(normalizeCLR(input)).toMatch(expected);
171-
});
171+
}
172172
});
173173

174174
test('should not replace non-time number patterns', () => {
@@ -195,8 +195,8 @@ describe('normalizeCLR', () => {
195195
},
196196
];
197197

198-
testCases.forEach(({ input, expected }) => {
198+
for (const { input, expected } of testCases) {
199199
expect(normalizeCLR(input)).toBe(expected);
200-
});
200+
}
201201
});
202202
});

0 commit comments

Comments
 (0)