Skip to content

Commit 1bcfa22

Browse files
fix: add build tag to managers_test.go for Linux CI compatibility
The test file was missing the same build constraint as managers.go, causing test compilation failures on Linux (ubuntu-latest in CI). The managers.go file has //go:build !nogui && !headless && !linux but managers_test.go had no build tag, leading to undefined: extractHealthLevel errors when running tests on Linux.
1 parent fcb1cf5 commit 1bcfa22

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

internal/tray/managers_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build !nogui && !headless && !linux
2+
13
package tray
24

35
import (

0 commit comments

Comments
 (0)