diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2018-02-20 00:32:38 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2018-02-23 16:54:39 -0800 |
commit | 18d9c8479f8534cc19765345560d2d39b8920a4d (patch) | |
tree | 411ec51fe2215bab8fabc3bad73a32d6bb64ab45 /tests/iterator/workdir.c | |
parent | 809b0ca6b9b6a5648b8e802a9f0c6a0821257595 (diff) | |
download | libgit2-18d9c8479f8534cc19765345560d2d39b8920a4d.tar.gz |
testrepo: add new branch
Add a new branch to the `testrepo` repository, where the `README` file
has changed to executable. This branch enables typechange tests between
the new `executable` branch and `master`.
Diffstat (limited to 'tests/iterator/workdir.c')
-rw-r--r-- | tests/iterator/workdir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/iterator/workdir.c b/tests/iterator/workdir.c index 198edc7e8..81016752c 100644 --- a/tests/iterator/workdir.c +++ b/tests/iterator/workdir.c @@ -610,6 +610,7 @@ void test_iterator_workdir__filesystem2(void) static const char *expect_base[] = { "heads/br2", "heads/dir", + "heads/executable", "heads/ident", "heads/long-file-name", "heads/master", @@ -630,7 +631,7 @@ void test_iterator_workdir__filesystem2(void) cl_git_pass(git_iterator_for_filesystem( &i, "testrepo/.git/refs", NULL)); - expect_iterator_items(i, 15, expect_base, 15, expect_base); + expect_iterator_items(i, 16, expect_base, 16, expect_base); git_iterator_free(i); } |