Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
fix silly uninitialized var
Browse files Browse the repository at this point in the history
  • Loading branch information
burmudar committed Oct 20, 2020
1 parent ca1f0cd commit 8f10fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtorrent/rtorrent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ func TestRTorrent(t *testing.T) {
t.Run("get torrent", func(t *testing.T) {
// It will take some time to appear, so retry a few times
<-time.After(time.Second)
torrents, err = client.GetTorrents(ViewMain)
torrents, err := client.GetTorrents(ViewMain)
require.NoError(t, err)

require.NotEmpty(t, torrents)
Expand Down

0 comments on commit 8f10fe2

Please sign in to comment.