1
0
Fork 0
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:
kay.one 2011-06-01 20:44:32 -07:00
parent 3665856d79
commit 72f8a7eab1

View file

@ -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;
} }