| Index: service/datastore/testable.go
|
| diff --git a/service/datastore/testable.go b/service/datastore/testable.go
|
| index 14648dc124b5c0997f18f424765888e4fc6d7a6e..483cb762314814090026bde53c001029b68e83f5 100644
|
| --- a/service/datastore/testable.go
|
| +++ b/service/datastore/testable.go
|
| @@ -4,7 +4,10 @@
|
|
|
| package datastore
|
|
|
| -type TestingSnapshot interface{}
|
| +// TestingSnapshot is an opaque implementation-defined snapshot type.
|
| +type TestingSnapshot interface {
|
| + ImATestingSnapshot()
|
| +}
|
|
|
| // Testable is the testable interface for fake datastore implementations.
|
| type Testable interface {
|
|
|