diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-08-15 04:57:37 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-08-15 05:16:51 +0900 |
| commit | 4ffeec3004607b76f73e504da220a1490c598348 (patch) | |
| tree | 68cca16c22814b13974db0f19c151f8eb31e2dae /hst/template_test.go | |
| parent | 9ed3ba85eaba4bc4bd12b290dc4daf00ffe159dc (diff) | |
hst/enablement: editor friendly enablement adaptor
Having the bit field value here (in decimal, no less) is unfriendly to text editors. Use a bunch of booleans here to improve ease of use.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'hst/template_test.go')
| -rw-r--r-- | hst/template_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hst/template_test.go b/hst/template_test.go index 76933783..31b9013e 100644 --- a/hst/template_test.go +++ b/hst/template_test.go @@ -18,7 +18,11 @@ func TestTemplate(t *testing.T) { "--enable-features=UseOzonePlatform", "--ozone-platform=wayland" ], - "enablements": 13, + "enablements": { + "wayland": true, + "dbus": true, + "pulse": true + }, "session_bus": { "see": null, "talk": [ |
