From 45868cd67e24b5b87942913ac12b9d6b500f6515 Mon Sep 17 00:00:00 2001 From: ze0s Date: Tue, 5 Nov 2024 20:02:03 +0100 Subject: [PATCH] fix: tests --- domain_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/domain_test.go b/domain_test.go index 8c03a57..289ef27 100644 --- a/domain_test.go +++ b/domain_test.go @@ -44,6 +44,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "autoTMM": "false", "firstLastPiecePrio": "false", @@ -73,6 +74,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "root_folder": "true", "contentLayout": "Subfolder", @@ -104,6 +106,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "root_folder": "false", "contentLayout": "NoSubfolder", @@ -135,6 +138,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "autoTMM": "false", "firstLastPiecePrio": "false", @@ -165,6 +169,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "autoTMM": "false", "firstLastPiecePrio": "false", @@ -197,6 +202,7 @@ func TestTorrentAddOptions_Prepare(t *testing.T) { }, want: map[string]string{ "paused": "false", + "stopped": "false", "skip_checking": "true", "autoTMM": "false", "firstLastPiecePrio": "true",