aboutsummaryrefslogtreecommitdiff
path: root/lib/ignore/cache_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ignore/cache_test.go')
-rw-r--r--lib/ignore/cache_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ignore/cache_test.go b/lib/ignore/cache_test.go
index 68513203d..6aae99464 100644
--- a/lib/ignore/cache_test.go
+++ b/lib/ignore/cache_test.go
@@ -9,6 +9,8 @@ package ignore
import (
"testing"
"time"
+
+ "github.com/syncthing/syncthing/lib/ignore/ignoreresult"
)
func TestCache(t *testing.T) {
@@ -28,7 +30,7 @@ func TestCache(t *testing.T) {
// Set and check some items
- c.set("true", resultInclude|resultDeletable)
+ c.set("true", ignoreresult.IgnoredDeletable)
c.set("false", 0)
res, ok = c.get("true")