aboutsummaryrefslogtreecommitdiffstats
path: root/modules/regexplru/regexplru_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/regexplru/regexplru_test.go')
-rw-r--r--modules/regexplru/regexplru_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/regexplru/regexplru_test.go b/modules/regexplru/regexplru_test.go
index 9c24b23fa9..4b539c31e9 100644
--- a/modules/regexplru/regexplru_test.go
+++ b/modules/regexplru/regexplru_test.go
@@ -18,9 +18,9 @@ func TestRegexpLru(t *testing.T) {
assert.NoError(t, err)
assert.True(t, r.MatchString("a"))
- assert.EqualValues(t, 1, lruCache.Len())
+ assert.Equal(t, 1, lruCache.Len())
_, err = GetCompiled("(")
assert.Error(t, err)
- assert.EqualValues(t, 2, lruCache.Len())
+ assert.Equal(t, 2, lruCache.Len())
}