diff options
author | Scott J. Goldman <scottjg@github.com> | 2013-02-07 02:04:17 -0800 |
---|---|---|
committer | Scott J. Goldman <scottjg@github.com> | 2013-02-07 02:04:17 -0800 |
commit | 1ca163ff13d53d015fe7ac0322852234b03f40d0 (patch) | |
tree | 5bac9660641e2006476c6a574ff2e7568e31e925 | |
parent | a35e8709c660770d34365bb62ae5d25d4d14b048 (diff) | |
download | libgit2-1ca163ff13d53d015fe7ac0322852234b03f40d0.tar.gz |
tests: fix code style in threads/basic.c
-rw-r--r-- | tests-clar/threads/basic.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/tests-clar/threads/basic.c b/tests-clar/threads/basic.c index 2b1c36808..a15c53140 100644 --- a/tests-clar/threads/basic.c +++ b/tests-clar/threads/basic.c @@ -5,16 +5,19 @@ static git_repository *g_repo; -void test_threads_basic__initialize(void) { - g_repo = cl_git_sandbox_init("testrepo"); +void test_threads_basic__initialize(void) +{ + g_repo = cl_git_sandbox_init("testrepo"); } -void test_threads_basic__cleanup(void) { - cl_git_sandbox_cleanup(); +void test_threads_basic__cleanup(void) +{ + cl_git_sandbox_cleanup(); } -void test_threads_basic__cache(void) { - // run several threads polling the cache at the same time - cl_assert(1 == 1); +void test_threads_basic__cache(void) +{ + // run several threads polling the cache at the same time + cl_assert(1 == 1); } |