about summary refs log tree commit diff stats
path: root/tests/t0105-commit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t0105-commit.sh')
-rwxr-xr-xtests/t0105-commit.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/t0105-commit.sh b/tests/t0105-commit.sh index 1a12ee3..cfed1e7 100755 --- a/tests/t0105-commit.sh +++ b/tests/t0105-commit.sh
@@ -11,7 +11,7 @@ test_expect_success 'find commit subject' '
11 grep "<div class=.commit-subject.>commit 5<" tmp 11 grep "<div class=.commit-subject.>commit 5<" tmp
12' 12'
13 13
14test_expect_success 'find commit msg' 'grep "<div class=.commit-msg.></div>" tmp' 14test_expect_success 'find commit msg' 'grep "<pre class=.commit-msg.></pre>" tmp'
15test_expect_success 'find diffstat' 'grep "<table summary=.diffstat. class=.diffstat.>" tmp' 15test_expect_success 'find diffstat' 'grep "<table summary=.diffstat. class=.diffstat.>" tmp'
16 16
17test_expect_success 'find diff summary' ' 17test_expect_success 'find diff summary' '
@@ -29,8 +29,8 @@ test_expect_success 'root commit contains diffstat' '
29' 29'
30 30
31test_expect_success 'root commit contains diff' ' 31test_expect_success 'root commit contains diff' '
32 grep ">diff --git a/file-1 b/file-1<" tmp && 32 grep ">diff --git a/file-1 b/file-1" tmp &&
33 grep "<div class=.add.>+1</div>" tmp 33 grep "<span class=.add.>+1</span>" tmp
34' 34'
35 35
36test_done 36test_done