Skip to content

Commit 0d93396

Browse files
committed
RDBC-308 fix QueryOnCountersTest
1 parent b429683 commit 0d93396

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/Ported/Counters/QueryOnCountersTest.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,9 @@ describe("QueryOnCountersTest", function () {
398398
}, `companies/${i}-A`);
399399
}
400400

401-
incCounter(session, "orders/1-A", "Downloads", 100);
402-
incCounter(session, "orders/2-A", "Downloads", 200);
403-
incCounter(session, "orders/3-A", "Downloads", 300);
401+
incCounter(session, "orders/1-A", "downloads", 100);
402+
incCounter(session, "orders/2-A", "downloads", 200);
403+
incCounter(session, "orders/3-A", "downloads", 300);
404404
await session.saveChanges();
405405
}
406406

@@ -447,9 +447,9 @@ describe("QueryOnCountersTest", function () {
447447
name: empNames[i - 1]
448448
}, `employees/${i}-A`, Employee);
449449
}
450-
incCounter(session, "employees/1-A", "Downloads", 100);
451-
incCounter(session, "employees/2-A", "Downloads", 200);
452-
incCounter(session, "employees/3-A", "Downloads", 300);
450+
incCounter(session, "employees/1-A", "downloads", 100);
451+
incCounter(session, "employees/2-A", "downloads", 200);
452+
incCounter(session, "employees/3-A", "downloads", 300);
453453
await session.saveChanges();
454454
}
455455

0 commit comments

Comments
 (0)