diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2023-04-05 10:39:01 +0100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2023-04-05 10:39:01 +0100 |
commit | 751887211b9f9fde4eff15018d2b524da55274d2 (patch) | |
tree | c59f9815cd971168a9bc2c90ef9a2066ebdd8d43 /tests/libgit2/reset/hard.c | |
parent | f7fd9ce947fc2189ce80abc31fdc6077df94f73b (diff) | |
download | libgit2-ethomson/sha256_index.tar.gz |
index: add sha256 supportethomson/sha256_index
Diffstat (limited to 'tests/libgit2/reset/hard.c')
-rw-r--r-- | tests/libgit2/reset/hard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libgit2/reset/hard.c b/tests/libgit2/reset/hard.c index 0b6342cb2..06a8a049a 100644 --- a/tests/libgit2/reset/hard.c +++ b/tests/libgit2/reset/hard.c @@ -3,6 +3,7 @@ #include "reset_helpers.h" #include "path.h" #include "futils.h" +#include "index.h" static git_repository *repo; static git_object *target; @@ -252,7 +253,7 @@ void test_reset_hard__switch_file_to_dir(void) git_odb_free(odb); entry.mode = GIT_FILEMODE_BLOB; - cl_git_pass(git_index_new(&idx)); + cl_git_pass(git_index__new(&idx, GIT_OID_SHA1)); cl_git_pass(git_signature_now(&sig, "foo", "bar")); /* Create the old tree */ |