Skip to content

Commit 12a3af0

Browse files
committed
Make random number bigger than 1000
1 parent d5932fc commit 12a3af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/stories/variant-analysis/VariantAnalysisAnalyzedRepos.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const manyScannedRepos = Array.from({ length: 1000 }, (_, i) => {
131131
const mockedScannedRepo = createMockScannedRepo();
132132
const randomInt = uniqueNumbers.pop();
133133
const uniqueId =
134-
randomInt === undefined ? Math.floor(Math.random() * 100000) : randomInt;
134+
randomInt === undefined ? Math.random() * 8000 + 1001 : randomInt;
135135

136136
return {
137137
...mockedScannedRepo,

0 commit comments

Comments
 (0)