Skip to content

Commit 605599b

Browse files
committed
Fix: FuzzyInteger's higher limit is inclusive it turns out
1 parent e1e61c2 commit 605599b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

djangocms_versioning/test_utils/factories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class PageContentFactory(AbstractContentFactory):
226226
soft_root = FuzzyChoice([True, False])
227227
limit_visibility_in_menu = constants.VISIBILITY_USERS
228228
template = "page.html"
229-
xframe_options = FuzzyInteger(0, 4)
229+
xframe_options = FuzzyInteger(0, 3)
230230

231231
class Meta:
232232
model = PageContent

0 commit comments

Comments
 (0)