Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-02-14 18:45:01 +0300
committerEdward Thomson <ethomson@microsoft.com>2015-02-27 21:47:34 +0300
commit5cbe950fb8b18e930f79c81bdab0aebf21443596 (patch)
treeed3c32fcf402803f04dde37f14409800b9014f29 /tests/perf
parent094cfc2904bab0d6ec52f16cb677b3b0ebbc7621 (diff)
merge perf test: drop unnecessary SAFE_CREATE
Diffstat (limited to 'tests/perf')
-rw-r--r--tests/perf/helper__perf__do_merge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/perf/helper__perf__do_merge.c b/tests/perf/helper__perf__do_merge.c
index 00221851e..4c41f926c 100644
--- a/tests/perf/helper__perf__do_merge.c
+++ b/tests/perf/helper__perf__do_merge.c
@@ -26,7 +26,7 @@ void perf__do_merge(const char *fixture,
perf__timer__start(&t_total);
- checkout_opts.checkout_strategy = GIT_CHECKOUT_SAFE_CREATE;
+ checkout_opts.checkout_strategy = GIT_CHECKOUT_SAFE;
clone_opts.checkout_opts = checkout_opts;
cl_git_pass(git_signature_now(&clone_opts.signature, "Me", "foo@example.com"));