From 0048782d978d45af9640c76166c0452e1aeadd5a Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 8 Jun 2016 01:14:11 -0400 Subject: [PATCH] e2e: tests: fix small typo Found when trying to get the e2e tests to run on Fedora which they don't because of https://github.com/kr/pty/issues/21 --- e2e/ctl_v2_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/ctl_v2_test.go b/e2e/ctl_v2_test.go index b3c0ca1e1..8cf44dc2b 100644 --- a/e2e/ctl_v2_test.go +++ b/e2e/ctl_v2_test.go @@ -232,7 +232,7 @@ func TestCtlV2RoleList(t *testing.T) { func TestCtlV2Backup(t *testing.T) { // For https://github.com/coreos/etcd/issues/5360 defer testutil.AfterTest(t) - backupDir, err := ioutil.TempDir("", "testbakcup0.etcd") + backupDir, err := ioutil.TempDir("", "testbackup0.etcd") if err != nil { t.Fatal(err) }