We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd52a03 commit f1d7e96Copy full SHA for f1d7e96
tv/tv_test.go
@@ -15,7 +15,7 @@ func TestLoadingDocument(t *testing.T) {
15
if idr.Idoc.doc == nil {
16
t.Error("Expected Idoc not to be nil", idr.Idoc)
17
}
18
- url = TestHTMLURL("testhtml/films1.html")
+ url = "testhtml/films1.html"
19
go url.loadDocument(c)
20
idr = <-c
21
if idr.Error != nil {
@@ -24,7 +24,7 @@ func TestLoadingDocument(t *testing.T) {
24
25
t.Error("Expected Idoc not to be nil: ", idr.Idoc)
26
27
- url = TestHTMLURL("testhtml/nosuchfile.html")
+ url = "testhtml/nosuchfile.html"
28
29
30
if idr.Error == nil {
0 commit comments