Update all other pieces for the CheckumStorage and Verify

This commit is contained in:
Andrey Smirnov
2017-04-19 02:59:24 +03:00
parent a85d8b6f90
commit 10c096fbb6
18 changed files with 68 additions and 60 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ type mockChecksumStorage struct {
store map[string]utils.ChecksumInfo
}
// NewMockChecksumtorage creates aptly.ChecksumStorage for tests
func NewMockChecksumtorage() aptly.ChecksumStorage {
// NewMockChecksumStorage creates aptly.ChecksumStorage for tests
func NewMockChecksumStorage() aptly.ChecksumStorage {
return &mockChecksumStorage{
store: make(map[string]utils.ChecksumInfo),
}