summaryrefslogtreecommitdiffstats
path: root/store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'store_test.go')
-rw-r--r--store_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store_test.go b/store_test.go
index e2c44e9..cf8e58e 100644
--- a/store_test.go
+++ b/store_test.go
@@ -229,7 +229,7 @@ func TestStoreMemoize(t *testing.T) {
return []byte("Value"), nil
}
- got, err := store.Memoize([]byte("Key"), factoryFunc, 1*time.Hour)
+ got, err := store.Memorize([]byte("Key"), factoryFunc, 1*time.Hour)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
@@ -257,7 +257,7 @@ func TestStoreMemoize(t *testing.T) {
return []byte("NewValue"), nil
}
- got, err := store.Memoize([]byte("Key"), factoryFunc, 1*time.Hour)
+ got, err := store.Memorize([]byte("Key"), factoryFunc, 1*time.Hour)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}