Commit b57f9652 authored by gwenn's avatar gwenn

Comment out verbose tests.

parent 99c43b96
......@@ -76,9 +76,9 @@ func TestTransaction(t *testing.T) {
db := open(t)
defer db.Close()
checkNoError(t, db.Begin(), "Error while beginning transaction: %s")
if err := db.Begin(); err == nil {
/*if err := db.Begin(); err == nil {
t.Fatalf("Error expected (transaction cannot be nested)")
}
}*/
checkNoError(t, db.Commit(), "Error while commiting transaction: %s")
}
......
......@@ -75,5 +75,5 @@ func TestTrace(t *testing.T) {
}
func TestLog(t *testing.T) {
Log(0, "One message")
//Log(0, "One message")
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment