Commit b68c0aec authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

go/build: fix test on Windows

Change-Id: Icba46194bcbfd86b512eef2599242c715ad4e7d3
Reviewed-on: https://go-review.googlesource.com/2041Reviewed-by: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
parent a824ffcc
......@@ -99,7 +99,7 @@ func TestMultiplePackageImport(t *testing.T) {
t.Fatal(`Import("testdata/multi") did not return MultiplePackageError.`)
}
want := &MultiplePackageError{
Dir: "testdata/multi",
Dir: filepath.FromSlash("testdata/multi"),
Packages: []string{"main", "test_package"},
Files: []string{"file.go", "file_appengine.go"},
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment