Skip to content

Commit cf963f8

Browse files
committed
Update
1 parent 7c7cd8b commit cf963f8

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

tests/test_args.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from pytest import MonkeyPatch
66

7-
from archinstall.default_profiles.profile import GreeterType
7+
from archinstall.default_profiles.profile import CustomSetting, GreeterType
88
from archinstall.lib.args import ArchConfig, ArchConfigHandler, Arguments
99
from archinstall.lib.hardware import GfxDriver
1010
from archinstall.lib.models.application import (
@@ -173,10 +173,13 @@ def test_config_file_parsing(
173173
{
174174
'custom_settings': {
175175
'Hyprland': {
176-
'seat_access': 'polkit',
176+
CustomSetting.SeatAccess: 'polkit',
177177
},
178178
'Sway': {
179-
'seat_access': 'seatd',
179+
CustomSetting.SeatAccess: 'seatd',
180+
},
181+
'KDE Plasma': {
182+
CustomSetting.PlasmaFlavor: 'plasma-meta',
180183
},
181184
},
182185
'details': [

0 commit comments

Comments
 (0)