Browse Source

Apply suggestions from code review

pull/8101/head
yihuang 3 years ago
committed by GitHub
parent
commit
ca4f79d136
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cmd/tendermint/commands/rollback_test.go

+ 2
- 2
cmd/tendermint/commands/rollback_test.go View File

@ -46,8 +46,8 @@ func TestRollbackIntegration(t *testing.T) {
height, _, err = commands.RollbackState(cfg)
require.NoError(t, err, "%d", height)
})
t.Run("Rollback agian", func(t *testing.T) {
// should be able to rollback agian.
t.Run("Rollback again", func(t *testing.T) {
// should be able to rollback again.
require.NoError(t, app.Rollback())
height2, _, err := commands.RollbackState(cfg)
require.NoError(t, err, "%d", height2)


Loading…
Cancel
Save