diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2021-01-06 11:49:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 11:49:00 +0000 |
commit | 27e34f9b9843f7bcc33a4ccfe3e395fe303cba63 (patch) | |
tree | 0f2bbf08b7def90fdf7f6785936f8632ae1e151a /tests/core/structinit.c | |
parent | f0d7922c9bafff38e12978625f467aafebe75145 (diff) | |
parent | ddafbafef54677c3466260e52b135d5dff832624 (diff) | |
download | libgit2-master.tar.gz |
Merge pull request #5759 from JoshuaS3/mastermaster
Add documentation for git_blob_filter_options.version
Diffstat (limited to 'tests/core/structinit.c')
-rw-r--r-- | tests/core/structinit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/core/structinit.c b/tests/core/structinit.c index 192096be3..b6377bdde 100644 --- a/tests/core/structinit.c +++ b/tests/core/structinit.c @@ -82,6 +82,11 @@ void test_core_structinit__compare(void) git_blame_options, GIT_BLAME_OPTIONS_VERSION, \ GIT_BLAME_OPTIONS_INIT, git_blame_options_init); + /* blob_filter_options */ + CHECK_MACRO_FUNC_INIT_EQUAL( \ + git_blob_filter_options, GIT_BLOB_FILTER_OPTIONS_VERSION, \ + GIT_BLOB_FILTER_OPTIONS_INIT, git_blob_filter_options_init); + /* checkout */ CHECK_MACRO_FUNC_INIT_EQUAL( \ git_checkout_options, GIT_CHECKOUT_OPTIONS_VERSION, \ |