Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
noot committed Jun 15, 2021
1 parent 749da75 commit 1058a9a
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/babe/babe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,12 @@ func TestService_PauseAndResume(t *testing.T) {
}()

go func() {
err := bs.Resume()
err := bs.Resume() //nolint
require.NoError(t, err)
}()

go func() {
err := bs.Resume()
err := bs.Resume() //nolint
require.NoError(t, err)
}()

Expand Down
54 changes: 54 additions & 0 deletions lib/runtime/mock_memory.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1058a9a

Please sign in to comment.