We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c7cd8b commit cf963f8Copy full SHA for cf963f8
1 file changed
tests/test_args.py
@@ -4,7 +4,7 @@
4
5
from pytest import MonkeyPatch
6
7
-from archinstall.default_profiles.profile import GreeterType
+from archinstall.default_profiles.profile import CustomSetting, GreeterType
8
from archinstall.lib.args import ArchConfig, ArchConfigHandler, Arguments
9
from archinstall.lib.hardware import GfxDriver
10
from archinstall.lib.models.application import (
@@ -173,10 +173,13 @@ def test_config_file_parsing(
173
{
174
'custom_settings': {
175
'Hyprland': {
176
- 'seat_access': 'polkit',
+ CustomSetting.SeatAccess: 'polkit',
177
},
178
'Sway': {
179
- 'seat_access': 'seatd',
+ CustomSetting.SeatAccess: 'seatd',
180
+ },
181
+ 'KDE Plasma': {
182
+ CustomSetting.PlasmaFlavor: 'plasma-meta',
183
184
185
'details': [
0 commit comments