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 40c65fe commit b533bb5Copy full SHA for b533bb5
tests/gorepo/run.go
@@ -427,10 +427,9 @@ type test struct {
427
428
tempDir string
429
err error
430
-
431
- // GOPHERJS: Skipping expectFail, see initExpectFail in go/test/run.go
432
}
433
+// startTest
434
func startTest(dir, gofile string) *test {
435
t := &test{
436
dir: dir,
@@ -473,7 +472,7 @@ func (t *test) goDirName() string {
473
472
474
475
func goDirFiles(longdir string) (filter []os.DirEntry, err error) {
476
- files, dirErr := os.ReadDir(longdir) // GOPHERJS: Updated to not use deprecated ioutil.ReadDir
+ files, dirErr := os.ReadDir(longdir)
477
if dirErr != nil {
478
return nil, dirErr
479
0 commit comments