mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
undo accidental change to test case contents
This commit is contained in:
parent
2c6eb66895
commit
79451bd53c
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue