indentation.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13941 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2006-05-07 20:22:54 +00:00
parent 27106709ec
commit 2d509ca6ca

View File

@ -88,21 +88,21 @@ main (int argc, char **argv)
{
int i;
qof_init();
qof_init();
g_log_set_always_fatal( G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING );
xaccLogDisable ();
/* Always start from the same random seed so we fail consistently */
srand(0);
if(cashobjects_register()) {
/* Loop the test. */
for (i=0; i < 10; i++)
{
run_test ();
}
}
if(cashobjects_register()) {
/* Loop the test. */
for (i=0; i < 10; i++)
{
run_test ();
}
}
success("queries seem to work");
qof_close();
qof_close();
return 0;
}