Skip to content

Commit 72d54d0

Browse files
Fix test
1 parent d6c8708 commit 72d54d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

service/service_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"context"
99
"net/url"
1010
"os"
11+
"strings"
1112
"testing"
1213
"time"
1314

@@ -61,7 +62,7 @@ func TestWaybackWithoutReduxer(t *testing.T) {
6162
os.Setenv("WAYBACK_ENABLE_IS", "false")
6263
os.Setenv("WAYBACK_ENABLE_IP", "false")
6364
os.Setenv("WAYBACK_ENABLE_PH", "false")
64-
os.Setenv("WAYBACK_STORAGE_DIR", "")
65+
os.Setenv("WAYBACK_STORAGE_DIR", "/wrong/path")
6566

6667
parser := config.NewParser()
6768
var err error
@@ -82,7 +83,7 @@ func TestWaybackWithoutReduxer(t *testing.T) {
8283
}
8384
w := Wayback(ctx, urls, do)
8485

85-
if w == nil {
86+
if !strings.HasPrefix(w.Error(), "reduxer unexpected") {
8687
t.Fatal("Unexpected wayback exceeded")
8788
}
8889
}

0 commit comments

Comments
 (0)