Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Tingaikin <denis.tingajkin@xored.com>
  • Loading branch information
denis-tingaikin committed Oct 31, 2021
1 parent f4dcf20 commit 49fa488
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkg/networkservice/common/retry/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ func Test_RetryClient_Request_ContextHasCorrectDeadline(t *testing.T) {
v, ok := c.Deadline()
require.True(t, ok)
require.Equal(t, expectedDeadline, v)

}),
), retry.WithSettings(retry.Settings{
TryTimeout: time.Hour,
Expand Down Expand Up @@ -132,7 +131,6 @@ func Test_RetryClient_Close_ContextHasCorrectDeadline(t *testing.T) {
v, ok := c.Deadline()
require.True(t, ok)
require.Equal(t, expectedDeadline, v)

}),
), retry.WithSettings(retry.Settings{
TryTimeout: time.Hour,
Expand Down Expand Up @@ -160,7 +158,6 @@ func Test_RetryClient_Close(t *testing.T) {
v, ok := c.Deadline()
require.True(t, ok)
require.Equal(t, expectedDeadline, v)

}),
), retry.WithSettings(retry.Settings{
TryTimeout: time.Hour,
Expand Down

0 comments on commit 49fa488

Please sign in to comment.