tests: fix code style in threads/basic.c

This commit is contained in:
Scott J. Goldman 2013-02-07 02:04:17 -08:00
parent a35e8709c6
commit 1ca163ff13

View File

@ -5,16 +5,19 @@
static git_repository *g_repo; static git_repository *g_repo;
void test_threads_basic__initialize(void) { void test_threads_basic__initialize(void)
g_repo = cl_git_sandbox_init("testrepo"); {
g_repo = cl_git_sandbox_init("testrepo");
} }
void test_threads_basic__cleanup(void) { void test_threads_basic__cleanup(void)
cl_git_sandbox_cleanup(); {
cl_git_sandbox_cleanup();
} }
void test_threads_basic__cache(void) { void test_threads_basic__cache(void)
// run several threads polling the cache at the same time {
cl_assert(1 == 1); // run several threads polling the cache at the same time
cl_assert(1 == 1);
} }