summaryrefslogtreecommitdiff
path: root/src/pkg/path/path_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-09-24 11:55:48 -0400
committerRuss Cox <rsc@golang.org>2010-09-24 11:55:48 -0400
commitd5165e014a48caf4e70ee689a9aa91f518c6b0e6 (patch)
tree891771a88ca051db8f5401574bb5d2f70ef8a4ff /src/pkg/path/path_test.go
parentae57636feb9528a094e23a8b4bde17b418a94b00 (diff)
downloadgo-d5165e014a48caf4e70ee689a9aa91f518c6b0e6.tar.gz
... changes
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/2273042
Diffstat (limited to 'src/pkg/path/path_test.go')
-rw-r--r--src/pkg/path/path_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go
index 513dcd967..592e696b5 100644
--- a/src/pkg/path/path_test.go
+++ b/src/pkg/path/path_test.go
@@ -118,7 +118,7 @@ var jointests = []JoinTest{
// join takes a []string and passes it to Join.
func join(elem []string, args ...string) string {
args = elem
- return Join(args)
+ return Join(args...)
}
func TestJoin(t *testing.T) {