Skip to content

Commit 669e6ba

Browse files
committed
Rename: form datas -> form data objects
1 parent 7dca3b7 commit 669e6ba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

runtime/tests/equality.test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ describe("FormData", () => {
227227
expect(compare(a, null)).toBe(false);
228228
});
229229

230-
test("empty form datas are equal", () => {
230+
test("empty form data objects are equal", () => {
231231
expect(compare(new FormData(), new FormData())).toBe(true);
232232
});
233233

234-
test("same data form datas are equal", () => {
234+
test("same data form data objects are equal", () => {
235235
const a = new FormData();
236236
a.append("a", "a");
237237

@@ -241,7 +241,7 @@ describe("FormData", () => {
241241
expect(compare(a, b)).toBe(true);
242242
});
243243

244-
test("different datas are not equal", () => {
244+
test("different data objects are not equal", () => {
245245
const a = new FormData();
246246
a.append("a", "a");
247247

@@ -251,7 +251,7 @@ describe("FormData", () => {
251251
expect(compare(a, b)).toBe(false);
252252
});
253253

254-
test("different datas are not equal", () => {
254+
test("different data objects are not equal", () => {
255255
const a = new FormData();
256256
a.append("a", "b");
257257

@@ -261,7 +261,7 @@ describe("FormData", () => {
261261
expect(compare(a, b)).toBe(false);
262262
});
263263

264-
test("same multiple data form datas are equal", () => {
264+
test("same multiple data form data objects are equal", () => {
265265
const a = new FormData();
266266
a.append("a", "a");
267267
a.append("a", "b");
@@ -273,7 +273,7 @@ describe("FormData", () => {
273273
expect(compare(a, b)).toBe(true);
274274
});
275275

276-
test("same multiple data form datas with different order are equal", () => {
276+
test("same multiple data form data objects with different order are equal", () => {
277277
const a = new FormData();
278278
a.append("a", "b");
279279
a.append("x", "y");

0 commit comments

Comments
 (0)