1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-04 13:31:46 +00:00

fix(ui): Replace filter value "nothing" by "none" (#1202)

This commit is contained in:
TwiN
2025-08-14 16:44:17 -04:00
committed by GitHub
parent 440b732c71
commit 6c28de6950
5 changed files with 12 additions and 12 deletions

View File

@@ -155,10 +155,10 @@ func TestConfig_ValidateAndSetDefaults_DefaultFilterBy(t *testing.T) {
ExpectedValue: defaultFilterBy,
},
{
Name: "ValidDefaultFilterBy_nothing",
DefaultFilterBy: "nothing",
Name: "ValidDefaultFilterBy_none",
DefaultFilterBy: "none",
ExpectedError: nil,
ExpectedValue: "nothing",
ExpectedValue: "none",
},
{
Name: "ValidDefaultFilterBy_failing",