Skip to content

Commit

Permalink
RDBC-308 fix QueryOnCountersTest
Browse files Browse the repository at this point in the history
  • Loading branch information
gregolsky committed Mar 29, 2019
1 parent b429683 commit 0d93396
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/Ported/Counters/QueryOnCountersTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,9 @@ describe("QueryOnCountersTest", function () {
}, `companies/${i}-A`);
}

incCounter(session, "orders/1-A", "Downloads", 100);
incCounter(session, "orders/2-A", "Downloads", 200);
incCounter(session, "orders/3-A", "Downloads", 300);
incCounter(session, "orders/1-A", "downloads", 100);
incCounter(session, "orders/2-A", "downloads", 200);
incCounter(session, "orders/3-A", "downloads", 300);
await session.saveChanges();
}

Expand Down Expand Up @@ -447,9 +447,9 @@ describe("QueryOnCountersTest", function () {
name: empNames[i - 1]
}, `employees/${i}-A`, Employee);
}
incCounter(session, "employees/1-A", "Downloads", 100);
incCounter(session, "employees/2-A", "Downloads", 200);
incCounter(session, "employees/3-A", "Downloads", 300);
incCounter(session, "employees/1-A", "downloads", 100);
incCounter(session, "employees/2-A", "downloads", 200);
incCounter(session, "employees/3-A", "downloads", 300);
await session.saveChanges();
}

Expand Down

0 comments on commit 0d93396

Please sign in to comment.