Commit 1ca163ff by Scott J. Goldman

tests: fix code style in threads/basic.c

parent a35e8709
...@@ -5,16 +5,19 @@ ...@@ -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 // run several threads polling the cache at the same time
cl_assert(1 == 1); cl_assert(1 == 1);
} }
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