From 79451bd53cc3be36d4c8e788465a4cf4642197d4 Mon Sep 17 00:00:00 2001 From: Seebs Date: Mon, 1 Apr 2019 19:05:47 -0500 Subject: [PATCH] undo accidental change to test case contents --- ctl/import_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctl/import_test.go b/ctl/import_test.go index b20919203..01abf372c 100644 --- a/ctl/import_test.go +++ b/ctl/import_test.go @@ -313,7 +313,7 @@ func TestImportCommand_RunValueKeys(t *testing.T) { if err != nil { t.Fatal(err) } - _, err = file.Write([]byte("foo1,bar2\nfoo3,bar4\nfoo5,bar6")) + _, err = file.Write([]byte("foo1,2\nfoo3,4\nfoo5,6")) if err != nil { t.Fatalf("writing to tempfile: %v", err) } @@ -355,7 +355,7 @@ func TestImportCommand_InvalidFile(t *testing.T) { if err != nil { t.Fatalf("creating tempfile: %v", err) } - _, err = file.Write([]byte("1,2\n3,4\n5,6")) + _, err = file.Write([]byte("a,2\n3,5\n5,6")) if err != nil { t.Fatalf("writing to tempfile: %v", err) }