diff options
author | Adam Spiers <git@adamspiers.org> | 2018-05-17 14:11:58 +0100 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2018-05-17 14:11:58 +0100 |
commit | 2f0a8a258ef8d4b2e8c787a565c0d9e2ac24697c (patch) | |
tree | 508d96475186c790abce117f4f85bcdcbcf8dc9a /tests | |
parent | d34f491f98a4bd2108260ed34230c9d2890c2b45 (diff) | |
download | git-deps-2f0a8a258ef8d4b2e8c787a565c0d9e2ac24697c.tar.gz |
create-repo.sh: use foo etc. for changed lines
Letters are already used for filenames so keep them distinct for clarity.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/create-repo.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/create-repo.sh b/tests/create-repo.sh index ee1310e..9c84150 100755 --- a/tests/create-repo.sh +++ b/tests/create-repo.sh @@ -51,14 +51,14 @@ main () { done # Now start making changes - edit file-a three a # depends on file-a tag - edit file-b three a # depends on file-b tag + edit file-a three foo # depends on file-a tag + edit file-b three bar # depends on file-b tag # Change non-overlapping part of previously changed file - edit file-a eight a # depends on file-a tag + edit file-a eight foo # depends on file-a tag # Change previously changed line - edit file-a three b # depends on file-a-three-a tag + edit file-a three baz # depends on file-a-three-a tag } main |