We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 327ffb6 commit efb05a7Copy full SHA for efb05a7
1 file changed
ietf/mailinglists/factories.py
@@ -11,7 +11,7 @@ class ListFactory(factory.DjangoModelFactory):
11
class Meta:
12
model = List
13
14
- name = factory.Faker('word')
+ name = factory.Sequence(lambda n: "list-name-%s" % n)
15
description = factory.Faker('sentence', nb_words=10)
16
advertised = factory.LazyAttribute(lambda obj: random.randint(0, 1))
17
0 commit comments