Commit e89e2e01 by Edward Thomson Committed by Edward Thomson

odb: rename test file to avoid underscore

In clar, an underscore is meaningful; avoid using it incorrectly /
unnecessarily.
parent 23df884e
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
static git_odb *_odb; static git_odb *_odb;
void test_odb_packed_one__initialize(void) void test_odb_packedone__initialize(void)
{ {
git_odb_backend *backend = NULL; git_odb_backend *backend = NULL;
...@@ -15,13 +15,13 @@ void test_odb_packed_one__initialize(void) ...@@ -15,13 +15,13 @@ void test_odb_packed_one__initialize(void)
cl_git_pass(git_odb_add_backend(_odb, backend, 1)); cl_git_pass(git_odb_add_backend(_odb, backend, 1));
} }
void test_odb_packed_one__cleanup(void) void test_odb_packedone__cleanup(void)
{ {
git_odb_free(_odb); git_odb_free(_odb);
_odb = NULL; _odb = NULL;
} }
void test_odb_packed_one__mass_read(void) void test_odb_packedone__mass_read(void)
{ {
unsigned int i; unsigned int i;
...@@ -37,7 +37,7 @@ void test_odb_packed_one__mass_read(void) ...@@ -37,7 +37,7 @@ void test_odb_packed_one__mass_read(void)
} }
} }
void test_odb_packed_one__read_header_0(void) void test_odb_packedone__read_header_0(void)
{ {
unsigned int i; unsigned int i;
......
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