summaryrefslogtreecommitdiff
path: root/tests/render.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/render.py')
-rw-r--r--tests/render.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/render.py b/tests/render.py
index 15467836..19f06f2b 100644
--- a/tests/render.py
+++ b/tests/render.py
@@ -43,7 +43,7 @@ class MultiboxRenderer:
images = []
layout_count = int(self.content[0])
- horizontal = math.ceil(math.sqrt(layout_count))
+ horizontal = math.floor(math.sqrt(layout_count))
start = 1
for _ in range(layout_count):