Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mustRemoveAll (0.09 sec)

  1. src/net/http/fs_test.go

    		t.Fatalf("read Body: %v", err)
    	}
    	s := string(b)
    	if !strings.Contains(s, "<a href=\"a\">a</a>\n<a href=\"b\">b</a>") {
    		t.Errorf("output appears to be unsorted:\n%s", s)
    	}
    }
    
    func mustRemoveAll(dir string) {
    	err := os.RemoveAll(dir)
    	if err != nil {
    		panic(err)
    	}
    }
    
    func TestFileServerImplicitLeadingSlash(t *testing.T) { run(t, testFileServerImplicitLeadingSlash) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top