1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-15 23:54:29 +02:00

standardize env var naming (#3031)

This commit is contained in:
Doug Lauder
2022-05-05 15:49:34 -04:00
committed by GitHub
parent 31a3ba8e6a
commit 554a790e57
5 changed files with 14 additions and 14 deletions

View File

@ -7,7 +7,7 @@ import (
// IsRunningUnitTests returns true if this instance of FocalBoard is running unit or integration tests.
func IsRunningUnitTests() bool {
testing := os.Getenv("FB_UNIT_TESTING")
testing := os.Getenv("FOCALBOARD_UNIT_TESTING")
if testing == "" {
return false
}