Skip to content

Commit

Permalink
Undoing changes to tests that are now failing
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbertJordan committed Sep 12, 2024
1 parent 3b1a4fe commit e0cf5bd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions go/database/mpt/forest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ func TestForest_CreatingAccountInfo_Fails(t *testing.T) {
if err != nil {
t.Fatalf("failed to open forest: %v", err)
}
defer forest.Close()

// inject failing stock to trigger an error applying the update
var injectedErr = errors.New("failed to call New")
Expand Down Expand Up @@ -296,7 +295,6 @@ func TestForest_setHashesFor_Getting_Node_Fails(t *testing.T) {
if err != nil {
t.Fatalf("failed to open forest: %v", err)
}
defer forest.Close()

// inject failing stock to trigger an error applying the update
var injectedErr = errors.New("failed to call Get")
Expand Down Expand Up @@ -326,7 +324,6 @@ func TestForest_Freeze_Fails(t *testing.T) {
if err != nil {
t.Fatalf("failed to open forest: %v", err)
}
defer forest.Close()

// inject failing stock to trigger an error applying the update
var injectedErr = errors.New("failed to call Get")
Expand Down Expand Up @@ -758,7 +755,6 @@ func TestForest_getMutableNodeByPath_CannotReadNode(t *testing.T) {
if err != nil {
t.Fatalf("failed to open forest: %v", err)
}
defer forest.Close()

// inject failing stock to trigger an error applying the update
var injectedErr = errors.New("failed to call Get")
Expand Down

0 comments on commit e0cf5bd

Please sign in to comment.