adjustments after rebase

This commit is contained in:
Ian Norden
2019-12-02 11:35:16 -06:00
parent db0f024088
commit 313c5fe427
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ func (queue *MockStorageQueue) Add(diff utils.StorageDiff) error {
if queue.AddPassedDiffs == nil {
queue.AddPassedDiffs = make(map[int]utils.StorageDiff)
}
queue.AddPassedDiffs[diff.Id] = diff
queue.AddPassedDiffs[diff.ID] = diff
return queue.AddError
}
@@ -36,7 +36,7 @@ func (transformer *MockStorageTransformer) Execute(diff utils.StorageDiff) error
if transformer.PassedDiffs == nil {
transformer.PassedDiffs = make(map[int]utils.StorageDiff)
}
transformer.PassedDiffs[diff.Id] = diff
transformer.PassedDiffs[diff.ID] = diff
return transformer.ExecuteErr
}