Change the tense of test names from past to present, as this is the prevalent style. Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- t/t4041-diff-submodule-option.sh | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/t/t4041-diff-submodule-option.sh b/t/t4041-diff-submodule-option.sh index f61c664..25cefba 100755 --- a/t/t4041-diff-submodule-option.sh +++ b/t/t4041-diff-submodule-option.sh @@ -32,7 +32,7 @@ add_file . foo >/dev/null head1=$(add_file sm1 foo1 foo2) fullhead1=$(cd sm1; git rev-parse --verify $head1) -test_expect_success 'added submodule' ' +test_expect_success 'add submodule' ' git add sm1 && git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && @@ -41,7 +41,7 @@ test_expect_success 'added submodule' ' test_cmp expected actual ' -test_expect_success 'added submodule, set diff.submodule' ' +test_expect_success 'add submodule, set diff.submodule' ' git config diff.submodule log && git add sm1 && git diff --cached >actual && @@ -86,7 +86,7 @@ test_expect_success 'diff.submodule does not affect plumbing' ' commit_file sm1 && head2=$(add_file sm1 foo3) -test_expect_success 'modified submodule(forward)' ' +test_expect_success 'modify submodule(forward)' ' git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && Submodule sm1 $head1..$head2: @@ -95,7 +95,7 @@ test_expect_success 'modified submodule(forward)' ' test_cmp expected actual ' -test_expect_success 'modified submodule(forward)' ' +test_expect_success 'modify submodule(forward)' ' git diff --submodule=log >actual && cat >expected <<-EOF && Submodule sm1 $head1..$head2: @@ -104,7 +104,7 @@ test_expect_success 'modified submodule(forward)' ' test_cmp expected actual ' -test_expect_success 'modified submodule(forward) --submodule' ' +test_expect_success 'modify submodule(forward) --submodule' ' git diff --submodule >actual && cat >expected <<-EOF && Submodule sm1 $head1..$head2: @@ -114,7 +114,7 @@ test_expect_success 'modified submodule(forward) --submodule' ' ' fullhead2=$(cd sm1; git rev-parse --verify $head2) -test_expect_success 'modified submodule(forward) --submodule=short' ' +test_expect_success 'modify submodule(forward) --submodule=short' ' git diff --submodule=short >actual && cat >expected <<-EOF && diff --git a/sm1 b/sm1 @@ -135,7 +135,7 @@ head3=$( git rev-parse --short --verify HEAD ) -test_expect_success 'modified submodule(backward)' ' +test_expect_success 'modify submodule(backward)' ' git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && Submodule sm1 $head2..$head3 (rewind): @@ -146,7 +146,7 @@ test_expect_success 'modified submodule(backward)' ' ' head4=$(add_file sm1 foo4 foo5) -test_expect_success 'modified submodule(backward and forward)' ' +test_expect_success 'modify submodule(backward and forward)' ' git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && Submodule sm1 $head2...$head4: @@ -166,7 +166,7 @@ git add sm1 && rm -f sm1 && mv sm1-bak sm1 -test_expect_success 'typechanged submodule(submodule->blob), --cached' ' +test_expect_success 'typechange submodule(submodule->blob), --cached' ' git diff --submodule=log --cached >actual && cat >expected <<-EOF && Submodule sm1 $head4...0000000 (submodule deleted) @@ -181,7 +181,7 @@ test_expect_success 'typechanged submodule(submodule->blob), --cached' ' test_cmp expected actual ' -test_expect_success 'typechanged submodule(submodule->blob)' ' +test_expect_success 'typechange submodule(submodule->blob)' ' git diff --submodule=log >actual && cat >expected <<-EOF && diff --git a/sm1 b/sm1 @@ -198,7 +198,7 @@ test_expect_success 'typechanged submodule(submodule->blob)' ' rm -rf sm1 && git checkout-index sm1 -test_expect_success 'typechanged submodule(submodule->blob)' ' +test_expect_success 'typechange submodule(submodule->blob)' ' git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && Submodule sm1 $head4...0000000 (submodule deleted) @@ -226,7 +226,7 @@ test_expect_success 'nonexistent commit' ' ' commit_file -test_expect_success 'typechanged submodule(blob->submodule)' ' +test_expect_success 'typechange submodule(blob->submodule)' ' git diff-index -p --submodule=log HEAD >actual && cat >expected <<-EOF && diff --git a/sm1 b/sm1 -- 1.7.8.1.362.g5d6df.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html