Update to use pg/v10
This commit is contained in:
parent
94c75b1d2a
commit
1536d97d8d
13 changed files with 449 additions and 98 deletions
|
@ -36,7 +36,7 @@ func TestInit(t *testing.T) {
|
|||
t.Fatal("An error ocurred =>", err)
|
||||
}
|
||||
if !info.Mode().IsDir() {
|
||||
t.Errorf(test_path, " is not dir.")
|
||||
t.Errorf("%s is not dir.", test_path)
|
||||
}
|
||||
|
||||
info, err = os.Stat(test_path + "/a/M")
|
||||
|
@ -44,7 +44,7 @@ func TestInit(t *testing.T) {
|
|||
t.Fatal("An error ocurred =>", err)
|
||||
}
|
||||
if !info.Mode().IsDir() {
|
||||
t.Errorf(test_path, " is not dir.")
|
||||
t.Errorf("%s is not dir.", test_path)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue