diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-21 19:11:18 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-27 20:15:08 -0500 |
| commit | 74471eefcea752542a2a6ee5e15b75b6baf05a48 (patch) | |
| tree | 9cf957d80de911660db6543685159e87e99d2e1f | |
| parent | 12c2eef7ad5063864d068dbd23e0dc2b752cf155 (diff) | |
| download | libgit2-74471eefcea752542a2a6ee5e15b75b6baf05a48.tar.gz | |
commit_graph: tests are now `commitgraph`
Underscores in filenames in tests indicate a logical separation - so
`commit_graph` becomes `commit::graph`. Rename it to `commitgraph` to
avoid this.
| -rw-r--r-- | tests/graph/commitgraph.c (renamed from tests/graph/commit_graph.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/graph/commit_graph.c b/tests/graph/commitgraph.c index 83f53f1d4..7607c35a3 100644 --- a/tests/graph/commit_graph.c +++ b/tests/graph/commitgraph.c @@ -6,7 +6,7 @@ #include "commit_graph.h" #include "futils.h" -void test_graph_commit_graph__parse(void) +void test_graph_commitgraph__parse(void) { git_repository *repo; struct git_commit_graph_file *file; @@ -50,7 +50,7 @@ void test_graph_commit_graph__parse(void) git_str_dispose(&commit_graph_path); } -void test_graph_commit_graph__parse_octopus_merge(void) +void test_graph_commitgraph__parse_octopus_merge(void) { git_repository *repo; struct git_commit_graph_file *file; @@ -91,7 +91,7 @@ void test_graph_commit_graph__parse_octopus_merge(void) git_str_dispose(&commit_graph_path); } -void test_graph_commit_graph__writer(void) +void test_graph_commitgraph__writer(void) { git_repository *repo; git_commit_graph_writer *w = NULL; |
