summaryrefslogtreecommitdiff
path: root/tests/render.py
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-11-21 17:23:44 +0100
committerLaurenz <laurmaedje@gmail.com>2019-11-21 17:50:51 +0100
commitebff8eb038706404cb4601cf6853675319663e3f (patch)
tree2837b41d6a0b23920eed5713887a1639552aed3a /tests/render.py
parent131e81baaf668f76a7dd1d39a0d88afd5e4582ec (diff)
Fix spacing bugs 🚧
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):