mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 01:11:43 +00:00
fixed random dbbenchmark test breaking
This commit is contained in:
parent
3665856d79
commit
72f8a7eab1
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public void get_episode_file()
|
||||||
for (int i = 5000; i < 5000 + 1000; i++)
|
for (int i = 5000; i < 5000 + 1000; i++)
|
||||||
{
|
{
|
||||||
count++;
|
count++;
|
||||||
var file = repo.Single<Episode>(random.Next(0, COUNT)).EpisodeFile;
|
var file = repo.Single<Episode>(random.Next(10, COUNT - 100)).EpisodeFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue