aboutsummaryrefslogtreecommitdiff
path: root/src/tests/test_core_init.py
diff options
context:
space:
mode:
authortassaron2026-01-11 14:29:58 -0500
committertassaron2026-01-11 14:29:58 -0500
commit669756b391d26661cf2e2a97a304e73343ef6655 (patch)
tree9cf2d4858c209bdab9f44d5c7f95c2a30b37f7a6 /src/tests/test_core_init.py
parent9d45f7f1a986aaa5d3c084c7ae747442b94a61b1 (diff)
update to Qt 6 and Pillow 12
and yeah, I accidentally ran black on the codebase. I don't want to spend more free time fixing that. All of these changes are simple renames or removals, nothing too major.
Diffstat (limited to 'src/tests/test_core_init.py')
-rw-r--r--src/tests/test_core_init.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tests/test_core_init.py b/src/tests/test_core_init.py
index 438f7fe..950dc13 100644
--- a/src/tests/test_core_init.py
+++ b/src/tests/test_core_init.py
@@ -4,15 +4,15 @@ from ..core import Core
def test_component_names():
core = Core()
assert core.compNames == [
- 'Classic Visualizer',
- 'Color',
+ "Classic Visualizer",
+ "Color",
"Conway's Game of Life",
- 'Image',
- 'Sound',
- 'Spectrum',
- 'Title Text',
- 'Video',
- 'Waveform',
+ "Image",
+ "Sound",
+ "Spectrum",
+ "Title Text",
+ "Video",
+ "Waveform",
]