diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-01-18 15:58:36 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-01-18 15:58:36 +0100 |
| commit | 277f2d2176f5e98305870f90b16af3feae1bb3d1 (patch) | |
| tree | a267216f67ebed87cbf83f021bfb01e9b79feae4 /tests/src/render.py | |
| parent | 70878885f5d169f2c5d9e66d3919ee56d5f9f9ca (diff) | |
ColorToken serialization + function fix 🚧
Diffstat (limited to 'tests/src/render.py')
| -rw-r--r-- | tests/src/render.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/render.py b/tests/src/render.py index bb27e973..d445e49c 100644 --- a/tests/src/render.py +++ b/tests/src/render.py @@ -38,7 +38,7 @@ class MultiboxRenderer: parts = lines[i + 1].split(' ', 2) index = int(parts[0]), int(parts[1]) path = parts[2] - self.fonts[index] = os.path.join(BASE, '../../fonts', path) + self.fonts[index] = os.path.join(BASE, '../../../fonts', path) self.content = lines[font_count + 1:] |
