We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c8708 commit 72d54d0Copy full SHA for 72d54d0
service/service_test.go
@@ -8,6 +8,7 @@ import (
8
"context"
9
"net/url"
10
"os"
11
+ "strings"
12
"testing"
13
"time"
14
@@ -61,7 +62,7 @@ func TestWaybackWithoutReduxer(t *testing.T) {
61
62
os.Setenv("WAYBACK_ENABLE_IS", "false")
63
os.Setenv("WAYBACK_ENABLE_IP", "false")
64
os.Setenv("WAYBACK_ENABLE_PH", "false")
- os.Setenv("WAYBACK_STORAGE_DIR", "")
65
+ os.Setenv("WAYBACK_STORAGE_DIR", "/wrong/path")
66
67
parser := config.NewParser()
68
var err error
@@ -82,7 +83,7 @@ func TestWaybackWithoutReduxer(t *testing.T) {
82
83
}
84
w := Wayback(ctx, urls, do)
85
- if w == nil {
86
+ if !strings.HasPrefix(w.Error(), "reduxer unexpected") {
87
t.Fatal("Unexpected wayback exceeded")
88
89
0 commit comments