Skip to content

Commit

Permalink
Fixed test message
Browse files Browse the repository at this point in the history
  • Loading branch information
tfonfara authored and ReneKroon committed Apr 8, 2021
1 parent f4ea033 commit abef1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ func TestCacheGetKeys(t *testing.T) {
cache.Set("hello", "world")
keys = cache.GetKeys()
assert.NotEmpty(t, keys, "Expected keys to be not empty")
assert.Equal(t, []string {"hello"}, keys, "Expected keys contains 'world'")
assert.Equal(t, []string{"hello"}, keys, "Expected keys contains 'hello'")
}

func TestCacheExpirationCallbackFunction(t *testing.T) {
Expand Down

0 comments on commit abef1cd

Please sign in to comment.