Fixed randomly failing test

This commit is contained in:
Eliot Berriot 2018-06-24 13:56:06 +02:00
parent 63dd5b2f06
commit 0e1203336d
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class ImportJobFactory(factory.django.DjangoModelFactory):
batch = factory.SubFactory(ImportBatchFactory)
source = factory.Faker("url")
mbid = factory.Faker("uuid4")
replace_if_duplicate = factory.Faker("boolean")
replace_if_duplicate = False
class Meta:
model = "music.ImportJob"