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; int i;
qof_init(); qof_init();
g_log_set_always_fatal( G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING ); g_log_set_always_fatal( G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING );
xaccLogDisable (); xaccLogDisable ();
/* Always start from the same random seed so we fail consistently */ /* Always start from the same random seed so we fail consistently */
srand(0); srand(0);
if(cashobjects_register()) { if(cashobjects_register()) {
/* Loop the test. */ /* Loop the test. */
for (i=0; i < 10; i++) for (i=0; i < 10; i++)
{ {
run_test (); run_test ();
} }
} }
success("queries seem to work"); success("queries seem to work");
qof_close(); qof_close();
return 0; return 0;
} }