1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00
This commit is contained in:
Travis Ralston
2021-07-12 13:52:10 -06:00
parent ec0f940ef0
commit 0e2bcb474d
2 changed files with 2 additions and 3 deletions

View File

@ -42,8 +42,8 @@ describe('FixedRollingArray', () => {
const width = 24;
const array = new FixedRollingArray(width, seed);
let maxValue = width * 2;
let minValue = width; // because we're forcing a rollover
const maxValue = width * 2;
const minValue = width; // because we're forcing a rollover
for (let i = 0; i <= maxValue; i++) {
array.pushValue(i);
}